Trying to create a custom layout.

Hello. I am trying to create a custom layout. The
format I'm going for is three rows, with the top and
bottom row being comprised of three columns each. IE:
| X | X | X |
|     X     |
| X | X | X |
-------------I have written a corresponding .html.txt file for my
intended layout and it looks correct. However, the
actual layout file's end results looks like a horizontal
flow layout with line wrapping after every third column.
IE:
|     X     | X | X |
|     X     | X | X |
|     X     |
-------------The code I have created is as follows. Thanks for your
time and assistance.
<?xml version="1.0" encoding="UTF-8"?>
<netuix:markupDefinition
xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0 markup-netuix-1_0_0.xsd">
    <netuix:locale language="en"/>
    <netuix:markup>
    <netuix:borderLayout columns="3"
       title="Seven Layout" description="This layout has seven positions." rows="3"
                           htmlLayoutUri="/framework/markup/layout/seven.html.txt" layoutStrategy="title"
                           markupType="Layout" markupName="seven">
            <!--// Row One //-->
            <netuix:placeholder title="west" description="The left column in the first row."
                                width="33%" flow="horizontal" usingFlow="true"
                                markupType="Placeholder" markupName="rowOneColumn_left">
            </netuix:placeholder>
            <netuix:placeholder title="center" description="The middle column in the first row."
                                width="34%" flow="horizontal" usingFlow="true"
                                markupType="Placeholder" markupName="rowOneColumn_center">
            </netuix:placeholder>
            <netuix:placeholder title="east" description="The right column in the first row."
                                width="33%" flow="horizontal" usingFlow="true"
                                markupType="Placeholder" markupName="rowOneColumn_right">
            </netuix:placeholder>
            <!--// Row Two //-->
            <netuix:placeholder title="center" description="The only column in the second row."
                                width="100%" flow="horizontal" usingFlow="true"
                                markupType="Placeholder" markupName="rowTwoColumn_single">
            </netuix:placeholder>
            <!--// Row Three //-->
            <netuix:placeholder title="west" description="The left column in the third row."
                                width="33%" flow="horizontal"
                                markupType="Placeholder" markupName="rowThreeColumn_left">
            </netuix:placeholder>
            <netuix:placeholder title="center" description="The middle column in the third row."
                                width="34%" flow="horizontal"
                                markupType="Placeholder" markupName="rowThreeColumn_center">
            </netuix:placeholder>
            <netuix:placeholder title="east" description="The right column in the third row."
                                width="33%" flow="horizontal" usingFlow="true"
                                markupType="Placeholder" markupName="rowThreeColumn_right">
            </netuix:placeholder>
        </netuix:borderLayout>
    </netuix:markup>
</netuix:markupDefinition>

Have you created a custom skeleton file to render this particular layout ??
If not, create a skeleton file with cutom prepended to the layout name. And here , just go with any HTML-Table based layout you want. The portal designer may not pick it up , but when its rendered, the layout turns up fine.
HOpe this helps.
If u need more help , lemme know,
i will send over some files.

Similar Messages

  • How to create a custom layout set to display the KM folders...

    Could someone please tell me how to create a custom layout set to display the KM folders?
    Thanks,
    Sudha.

    Hi Sudha,
    Please check the following blogs whick will guide you step by step.
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4123
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3071
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/c91b5610b65b4aa8204d09384d156b/frameset.htm
    If helps reward points
    cheers
    dev

  • Build failed when trying to create a custom Android viewer

    I am experiencing the same issue, I get the : 'build failed. try again later' without any further information, when trying to create a custom viewer for android. Is this caused by server overloads or are there some things to check?
    Any help is appreciated! Thank you

    hey Bob,
    I did not before as I was assigned a mac that had everything running (untill now ), but to be sure I followed the steps just now using the keytool in terminal but looks like this is not making any differance.
    also, I can see the previous apps listed showing the download apk option, I have not been prompted for a certificate yet, where in iOS apps you are asked for it on save before the build starts and when you download the zip again if I'm not mistaking.
    Right now I always get the build faild error, try again later when I save the last step in the viewer creation process.

  • Help - Creating a Custom Layout

    Hy, I'm creating a Grphical Programming Language,
    where user draw flowcharts by linking buttons.
    My problem is:
    After adding some buttons on the panel,
    the scrollBars does not appear.
    (I have set layout to be NULL so that I can add the buttons
    at specific position on the pane).
    I think I need to create a custom layout, but with a layout,
    after adding buttons on the panel and position them to specific
    location, when I maximize/restore the window, the buttons return
    to their initial position.
    Can anyone please send me the code for creating a custom layout (imagine
    that you are drawing a flowchart by adding buttons).
    NOTE: The buttons should stay at their position while maximizing/restoring
    the window.
    thanks in advance

    Hi,
    I'm currently working in a project that for what I understood is quite similar to yours...
    The way I solved the problem, was creating a virtual-grid. When the user adds the button, I have to methods (getRow() and getColumn())
    that convert the mouse coordinates to row and grid numbers. Then knowing the row and the column, I multiply this values for the row
    width and column height, and have the X and Y position where to add the button in the JPanel.
    Here is some of the code:
    public int getColumn(int x)//mouse coordinate x
            column=(int)(x/COL_WIDTH+1);
            if(maxColumn<column)
                maxColumn=column;
            return column;
        public int getRow(int y)//mouse coordinate y
            row=(int)(y/COL_HEIGHT+1);
            if(maxRow<row)
                maxRow=row;
            return row;
        }And then I add the component,
    jPanelContainer.add(component,
                        new org.netbeans.lib.awtextra.AbsoluteConstraints((col-1)*COL_WIDTH, (row-1)*COL_HEIGHT, -1, -1));This is only an ideia. Since I have a lot of constraints with the blocks that I have to add, I first add the components to an array[][],
    treat all the things in this array (like user deleted component, moves rows and columns, user added component, user moved component, etc...)
    and then "send it to the sreen"...
    Maybe I was a little bit confusing...
    Hope it helps!
    Regards,
    ANeto

  • Internal Error when trying to create a custom controller with execute comma

    Hi,
    I have got the following problem. I created a new web dynpro project and added an existing RFC model. But when I try to create a custom controller by applying a service controller including an execute command, I only get an internal error message. The message shows the following information:
    Plugin name:
    Web Dynpro Controller Editor Services
    Plugin ID:
    com.sap.ide.webdynpro.service.controllereditor
    Class:
    com.sap.ide.webdynpro.service.controllereditor.implementation.ImplementationService
    Method:
    getJDTMethod(Controller, String, IProgressMonitor)
    Message:
    Source controller implementation file is not accessible (Path to workspace folder: P:/.../gen_wdp/packages/com/clariant/ml5/types/ML5Cust.java)
    Exception:
    java.lang.Exception: 0
    Maybe someone could help me to fix this problem.
    Thanks Andy
    Ok... I found a way to fix by myself. All I have to do is to create a controller first and after this I have to apply the service controller. I don´t know why but it works. Both steps together doesn´t.
    Bye
    Andy
    Message was edited by: Andreas Choma

    I e-mailed tech support and got my answer.
    I should have been using /dev/rdsk and not /dev/dsk when specifying the disk slice to put the file system on.

  • Trying to create a custom tag

    I want to create a custom tag that has a attribute that ask
    for a number. like below...
    <cf_makeattributes number="?">
    Now say I made that number something like 5
    <cf_makeattributesnumber=
    "5">
    I would like for the tag to take that number and make 5
    attributes called "Form" in a array from 1 to 5 like below...
    <cfset attributes.form = arraynew(1)>
    <cfloop index="i" from="1" to="#attributes.number#">
    #attributes.form
    </cfloop>
    Is it possible to make a tag that ask for a number like 5 and
    make 5 attributes and within the same tag assign values to those 5
    attributes. for example consider the above.
    <cf_makeattributes number="5" attribute1="hi"
    attribute2="hello" attribute3="howdy" attribute4="hey"
    attribute5="HOWE!">
    or say i want to make 2 attributes and assign 2 values to
    those attributes
    <cf_makeattributes number="2" attribute1="This tag asked
    for 2 numbers" attribute2="and therefore gave me the ability to
    make 2 attributes">
    I also have another question that kinda applies to the
    question above.
    How does the coldfusion server read the tags. for example
    look at below
    <cf_makeattributes number="2" attribute1="hello"
    attribute2="world">
    would the server read it like this...
    step 1
    <
    cf_makeattributes number="2" attribute1="hello"
    attribute2="world">
    step 2
    <cf_makeattributes
    number="2" attribute1="hello" attribute2="world">
    step 3
    makeattributes.CFM (it now goes to the template that holds
    the tags scripts)
    Or does it first read all thats bold below
    <cf_makeattributes
    number="2" attribute1="hello" attribute2="world">
    then goes to the makeattributes template. Is there away I
    can compile my script one step at a time like C# and C++ just to
    see the steps
    PLUS Do i have to put my custom tag into a specific folder or
    can I just put it in the same folder as the document thats calling
    the custom tag

    > I could either make a bunch of attributes that will grab
    all the
    > values or I could loop out a array of attributes. Thats
    my goal
    I was with you until that line. The term attributes is
    confusing in this context. I'm not sure if you're talking about
    attributes in a generic sense or the custom tag attribute
    scope.
    > Now here wat im thinking now. What if instead I put the
    forms in a list. something like this...
    > <cf_Formentry
    Forms="#Form.one#,#form.two#,#form.three#">
    Do you mean form
    fields?
    Let's try this from a different angle. Can you give a
    concrete example of the desired results using this form?
    <form>
    <input name="username1" value="Alice">
    <input name="username2" value="Bob">
    <input name="username3" value="Kyle">
    <input name="username4" value="Michelle">
    <input name="username5" value="Robert">
    </form>

  • Create a Custom Layout for page

    I'm trying following the example -> Example 7-4 Sample Code for the example.layout File
    [ http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14243/develop_ui_lookfeel.htm#i1045018 ]
    and in this way I create new Layout for my page
    <skeleton:control name="*table*" presentationContext="${layoutpc}" class="wlp-bighorn-layout"
    cellspacing="0" cellpadding="0" width="100%" >
    <c:set var="ph" value="${layoutpc.placeholders}"/>
    <c:set var="left" value="${ph[0]}"/>
    <c:set var="upper" value="${ph[1]}"/>
    <c:set var="lowerLeft" value="${ph[2]}"/>
    <c:set var="lowerRight" value="${ph[3]}"/>
    my problem now is that I'd like create new Layout with div without table
    because the requirement of my project is I can't use table for positioning portlet
    I can't foud document or example about it
    I'm looking forward to yearing from you soon, many thanks in advice

    I've found it's worthwhile spending time fiddling and adjusting Lightroom's templates and saving to Custom Pages but I haven't found a way of removing a custom page layout once I've finished using it or tweaked it some more. Can you say how to remove one, please, johnbeardy? I can put them in and out of Favourites but the Custom Pages list just gets too long.

  • "No active legal regulations found for country US "  while trying to create the Customs Import Declaration

    Dear Experts,
    As part of creating Customs Import Declaration manually, when I selected the FTO and try to use create button I am getting error message .
    Can you please help me in this regard .
    No active legal regulations found for country US
    Ram

    Hi Ram,
    As the error message straight away tells , you need to activate Legal Regulation for Customs Management ( in standard case, it will be ACE) for US country through the below path:
    SPRO-->SAP Global Trade Services-->Customs Management-->Activate Leagl Regulation for Customs Management at Country/Country Group level
    In case of any further queries, please let me know it.
    Regards,
    Aman

  • How to create a custom layout with two rows

    hi ,
       i have a requirement of creating the portal page layout with two rows. First row has one container with 100% width and second row has 3 columns (30:40:30).
    How to create the layout?
    what are the modification in portapp.xml?
    Thanks and regards,
    Saravanan

    Hi,
    Check this:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/efa44d27a21a7de10000000a422035/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/efbac120711a71e10000000a422035/content.htm
    Here is example portalapp.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <!THIS FILE IS A COPY OF THE ORIGINAL VERSION STORED IN THE PCD. PLEASE DO NOT CHANGE IT!>
      <application-config>
        <property name="Vendor" value="sap.com"/>
        <property name="SecurityArea" value="NetWeaver.Portal"/>
        <property name="SharingReference" value="com.sap.portal.htmlb,com.sap.portal.useragent,com.sap.portal.pagebuilder"/>
      </application-config>
      <components>
        <component name="fullWidth">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="1 Column (Full Width)"/>
            <property name="com.sap.portal.pcm.Description" value="Layout displaying one full-width column"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld "/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="fullWidth.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConF"/>
            </property>
          </component-profile>
        </component>
        <component name="light_fullWidth">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="EPCFLevel" value="0"/>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Light 1 Column (Full Width)"/>
            <property name="com.sap.portal.pcm.Description" value="Layout displaying one full-width column"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="light_fullWidth.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConF"/>
            </property>
          </component-profile>
        </component>
        <component name="narrowWide">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="2 Columns (Narrow:Wide)"/>
            <property name="com.sap.portal.pcm.Description" value="Two-column layout displaying the narrow column on the left"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld "/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="narrowWide.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="light_narrowWide">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="EPCFLevel" value="0"/>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Light 2 Columns (Narrow:Wide)"/>
            <property name="com.sap.portal.pcm.Description" value="Two-column layout displaying the narrow column on the left"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="light_narrowWide.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="wideNarrow">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="2 Columns (Wide:Narrow)"/>
            <property name="com.sap.portal.pcm.Description" value="Two-column layout displaying the narrow column on the right"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld "/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="wideNarrow.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="light_wideNarrow">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="EPCFLevel" value="0"/>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Light 2 Columns (Wide:Narrow)"/>
            <property name="com.sap.portal.pcm.Description" value="Two-column layout displaying the narrow column on the right"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="light_wideNarrow.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="equalWidths">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="2 Columns (Equal Widths)"/>
            <property name="com.sap.portal.pcm.Description" value="Layout displaying two equal-width columns"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld "/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="equalWidths.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="light_equalWidths">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="EPCFLevel" value="0"/>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Light 2 Columns (Equal Widths)"/>
            <property name="com.sap.portal.pcm.Description" value="Layout displaying two equal-width columns"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="light_equalWidths.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="narrowWideNarrow">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="3 Columns (Narrow:Wide:Narrow)"/>
            <property name="com.sap.portal.pcm.Description" value="Three columns displayed in a narrow:wide:narrow layout"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld "/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="narrowWideNarrow.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConM"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont3" value="column3">
              <property name="plainDescription" value="Column 3"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
        <component name="light_narrowWideNarrow">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="EPCFLevel" value="0"/>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Light 3 Columns (Narrow:Wide:Narrow)"/>
            <property name="com.sap.portal.pcm.Description" value="Three columns displayed in a narrow:wide:narrow layout"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="light_narrowWideNarrow.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="column1">
              <property name="plainDescription" value="Column 1"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConL"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="column2">
              <property name="plainDescription" value="Column 2"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConM"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont3" value="column3">
              <property name="plainDescription" value="Column 3"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlPageConR"/>
            </property>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    Greetings,
    Praveen Gudapati

  • Trying to create a customized PDF form to save and re-use

    Hi,
    New to this program. I have created a "fill-in-the-blanks" PDF form and have saved it. But now when I print the form, there are characters in the beginning of the text boxes.  They are T and E. I don't understand why she characters are there and how do I get rid of them. We want this form to fill in the blanks format, then we want to be able to save it, and go on to the next one. In other words we will be re-using this format over and over again. Can someone help me? I am frustrated as I am almost there. Plus I downloaded a 30 day trial of Adobe Pro 9 to see if I could do this.....so I don't know if I will need to buy this program or not. Thanks.

    I don't want to post this form. I've attached it here for you to look at. I think I created it using forms. 
    "Bill@VT" <[email protected]> wrote:
    Also indicate if you created the form in Acrobat (using the tools in the TOOLS menu) or in Designer (using the package that is called from the FORMS menu.
    >

  • Multiple picklist field not showing up when trying to create a custom repor

    I recently have created 4 new fields in CRM, and 3 of the 4 fields can be found to create a report. For some reason, the multiple picklist field has not shown up. Any suggestions or advice on why this is an issue?

    Hi,
    The multi-select picklist should be available in the Analytics reports not in real-time reports.
    Another thing is that there is a delay in metadata refresh in reports, in staging it is about a week, in production it is 1 day, I think. so if you created a multi-select picklist in staging today, it would be available in analytics reports maybe after a week.
    Regards,
    Ani

  • Custom Layout Set

    Hi people.
    I am trying to create new, custom layout set, by copying existing sets and adding / removing features.
    My target is to create a layout set similar to ConsumerExplorer, but with a small addition - "Search" option.
    I have tried to play with the Admin breadcrumb, and also tried to add "Search from here" command through UI Commands, but unsuccessful.
    Could anyone please tell me how I can add the "Search" option to ConsumerExplorer without showing the whole admin toolbar?
    Points will be awarded, of course.

    Hi,
    The standard ConsumerExplorer layout set contains the Search from here command as part of the hover menu of the root element. Can you explain what exactly do you need?
    Best regards,
    Avishai Zamir

  • Trying to create custom theme but not able to find it.

    Hi,
    I am using Oracle 10g Database Express and APEX 4.0 and am trying to create a custom theme based on an existing one.
    I have created a theme_100 folder in the filesystem as a copy of theme_8 and have edited the css file & changed the colours of the images using Infraview graphics editor.
    I then have uploaded them into the DB using the WebDav function and can see the files when I run http://localhost:8080/i/themes/theme_100/
    However, within the application builder when I create an application and choose a theme, mine is not showing.
    Can you help me with whatever steps I am missing?
    Regards
    Adrian

    The templates used by your new theme in apex(that you created when you copied) would still be referencing your old css path.
    So update check the templates used in your new theme for the referred css files
    <li>In Your new theme's page templates check for the directory path that point to the old theme and modify that
    For example(I am using theme2 here)
      <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0.css" type="text/css" />
      <!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie.css" type="text/css" /><![endif]-->
      <!--[if IE 6]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie6.css" type="text/css" /><![endif]-->
      <!--[if IE 7]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_2/css/theme_4_0_ie7.css" type="text/css" /><![endif]-->Change the string in the CSS file path from theme_2 to theme_10 , assuming that it is in the same directory as the other themes. Else modify it appropriately.
    Do this for all page templates(or atleast the ones you use).

  • Creating customized Layout

    Hi Experts,
    My requirement is to create a customized layout.
    How can i create a layout and integrate it in portal.
    points will b awarded for answers
    Thanks in Advance
    Suba

    hai suba,
    i have given some sample code for creating custome layout.
    sample.jsp
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibHtmlb" prefix="hbj" %>
    <%@ taglib uri="prt:taglib:com.sap.portal.reserved.layout.TagLibLayout" prefix="lyt" %>
    <%@ page import="com.sapportals.portal.pb.layout.taglib.variabledef.RunMode" %>
    <lyt:template>
        <hbj:content id="myContext" >
            <hbj:page title="Portal Page">
            <table width="100%" height="*" border="2">
               <TR>
                  <TD width="50%" valign="top" align="center" ><lyt:container id="search" /></TD>
                   <TD valign="top"  width="50%" align="center"><lyt:container id="contentarea" /></TD>
                  </TR>
              <TR>
              <TD width="100%" valign="top" align="center" colspan="2"><lyt:container id="result" /></TD>
                  </TR>     
               </table>
         </hbj:page>
        </hbj:content>
    </lyt:template>
    portlapp.xml
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="Vendor" value="sap.com"/>
        <property name="SecurityArea" value="NetWeaver.Portal"/>
        <property name="SharingReference" value="com.sap.portal.htmlb,com.sap.portal.pagebuilder"/>
      </application-config>
      <components>
        <component name="AddBooksLayout">
          <component-config>
            <property name="ClassName" value="com.sapportals.portal.pb.layout.PageLayout"/>
            <property name="ResourceBundleName" value="pagebuilder_nls"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="ComponentType" value="com.sapportals.portal.layout"/>
            <property name="com.sap.portal.pcm.Title" value="Custom Layout"/>
            <property name="com.sap.portal.pcm.Description" value="Layout of two rows where the second column has been merged"/>
            <property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/>
            <property name="com.sap.portal.reserved.layout.TagLibHtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld"/>
            <property name="com.sap.portal.reserved.layout.TemplateFile" value="AddBookLayout.jsp"/>
            <property name="AuthScheme" value="anonymous"/>
            <property name="com.sap.portal.reserved.layout.Cont1" value="search">
              <property name="title" value="Search Area"/>
              <property name="orientation" value="vertical"/>
              <property name="designClass" value="prtlHeaderCon"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont2" value="result">
              <property name="title" value="Results to Display"/>
              <property name="orientation" value="vertical"/>
            </property>
            <property name="com.sap.portal.reserved.layout.Cont3" value="contentarea">
              <property name="title" value="Content to Display"/>
              <property name="orientation" value="vertical"/>
            </property>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    use the above code as sample and create ur own layout as per ur wish.this is a simple one.if u want more customization refer the following link.
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/efe25b0d301aa2e10000000a422035/frameset.htm
    after creating par file upload it to portal and create a new layout using it.
    for uploading par file refer the following blog
    Tag Libraries: Creating a new SAP NetWeaver Portal framework page

  • Create a custom Master Page in SharePoint Foundation 2013

    Hi,
    I am new to SharePoint foundation.
    I am trying to create a custom master page and save it as template, so that i can use it for all other sub sites. But i don't know where to start. Also i tries searching in Google, i got results for share point and not for share point foundation.
    So, Please give me a step by step procedure or a link to step by step procedure on how to create a master page, save it as template and use it for a sub site.
    Thanks in advance,
    Gowtham R

    Few points to note related to SharePoint Master page:
    You don't need to create master page template. If you deploy your master page in site collection level you can reuse the same master page in subsites without copying again and again, rather just by referencing
    You have not mentioned how you are going to deploy your master page. If you have any Visual Studio (VS) solution already, try to add your  master page in the VS solution and deploy your master page (and other branding components) as SharePoint WSP
    solution.
    Deploying master page will not activate the master page, you need to use some kind of 'Web Level Feature' to activate your branding - the feature will basically set the master page property of SharePoint site to your custom master page.
    Please follow the links below for steps by steps instructions (and you will find many just by googling 'sharepoint master page visual studio'):
    http://frederik.se/how-to-deploy-a-custom-master-page-in-sharepoint-2013-using-visual-studio/
    http://joshuaorimogunje.wordpress.com/2011/10/05/how-to-create-custom-master-page-for-sharepoint-2010-using-visual-studio-2010/
    http://blogs.msdn.com/b/bobgerman/archive/2011/01/31/packaging-master-pages-and-page-layouts-with-visual-studio-2010.aspx
    http://go.limeleap.com/community/bid/291931/Creating-a-Custom-SharePoint-Master-Page-with-jQuery-Using-Visual-Studio
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

Maybe you are looking for

  • Increase in assets' value

    Hi all, i have a problem with some assets which have had an increase in NBV after their depreciation key was changed from LINK to 000. Their were some assets which needed to be removed and while awaiting the approval to do so the users changed the de

  • Activate Profit Center Accounting in existing system.

    Dear Experts Please clearify me the steps to activate profit center accounting in which some open items e.g advances etc are exist. What will be the procedure to activate profit center accounting.

  • Email Client error on startup

    Everytime I try to open a PDF file, it tries to open up MS Outlook and MS Outlook ends up giving me an error about it not being the default e-mail client. I know fixing that error is an issue with MS Outlook, but can I just completely disable the e-m

  • Combined pdf printing issues

    When multiple pdf files are combined and printing is launched, the pdf window displays showing the scanning of pages prior to printing.  The scanning process of the pages to be printing is extremely slow.  We are using Adobe Standard X version 10.1.3

  • First time using Skype to call

    Hello! I live in Fla and I am goint to Brazil. Because this is the first time, I want be sure I will do the right thing: I have skype on my cell phone, i can buy credits to talk with my family and friends in Brazil and USA. I need to be in a place wi