Portlets not coming as per layout for the Cutomized layout structure

I have created new Customized layout for our application.
I could see the cutomized layout properly in Workshop. When i am adding the portlets to all of the placeholders in layout and running the portal , out put i could see all the portlets are coming in vertical and not as per structure as per i defined.
COuld not understand why it is happening when it is displaying properly in Workshop IDE.
One more issue i could not define the Height attribute to the placeholders .How to have cutomized heights for the placeholders?
Here are the My layout codes
Homelayout.layout_
<?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:layout title="homePageLayout" description="This layout is for home page of the portal"
skeletonUri="homePageLayout.jsp" htmlLayoutUri="/framework/markup/layout/homePageLayout.html.txt"
markupType="Layout" markupName="homePageLayout">
<netuix:placeholder title="top" description="The top most placeholder in this layout."
flow="vertical" usingFlow="true"
markupType="Placeholder" markupName="custom_Top">
</netuix:placeholder>
<netuix:placeholder title="center" description="The left of center placeholder in this layout."
flow="vertical" usingFlow="true"
markupType="Placeholder" markupName="custom_center">
</netuix:placeholder>
<netuix:placeholder title="bottomLeft" description="The right of center placeholder in this layout."
flow="vertical" usingFlow="true"
markupType="Placeholder" markupName="custom_bottomLeft">
</netuix:placeholder>
<netuix:placeholder title="bottomCenter" description="The right most placeholder in this layout."
flow="vertical" usingFlow="true"
markupType="Placeholder" markupName="custom_bottomCenter">
</netuix:placeholder>
<netuix:placeholder title="bottomRight" description="The right most placeholder in this layout."
flow="vertical" usingFlow="true"
markupType="Placeholder" markupName="custom_bottomRight">
</netuix:placeholder>
</netuix:layout>
</netuix:markup>
</netuix:markupDefinition>
homeLayout.html.txt_
<table class="portalLayout" id="thePortalLayout" width="100%" height="100%">
<tr height="40%">
<td colspan="3" class="placeholderTD" valign="top" width="100%" >
<placeholder number="0"/>
</td>
</tr>
<tr height="10%">
<td height="10%" colspan="3" class="placeholderTD" valign="top" width="100%">
<placeholder number="1"/>
</td>
</tr>
<tr height="50%">
<td class="placeholderTD" valign="top" width="25%">
<placeholder number="2"/>
</td>
<td class="placeholderTD" valign="top" width="50%">
<placeholder number="3"/>
</td>
<td class="placeholderTD" valign="top" width="25%">
<placeholder number="4"/>
</td>
</tr>
</table>
Skelnton JSP*
<%@ page import="com.bea.netuix.servlets.controls.layout.PlaceholderPresentationContext,
com.bea.netuix.servlets.controls.layout.BorderLayoutPresentationContext"%>
<%@ page import="java.util.List" %>
<%@ page import ="com.bea.netuix.servlets.controls.layout.LayoutPresentationContext"%>
<%@ page session="false"%>
<%@ taglib uri="http://www.bea.com/servers/portal/tags/netuix/render" prefix="render" %>
<%
LayoutPresentationContext layout = LayoutPresentationContext.getLayoutPresentationContext(request);
List children = layout.getChildren("layout:placeholder");
PlaceholderPresentationContext custom_Top =
(PlaceholderPresentationContext) children.get(0);
PlaceholderPresentationContext custom_center =
(PlaceholderPresentationContext) children.get(1);
PlaceholderPresentationContext custom_bottomLeft =
(PlaceholderPresentationContext) children.get(2);
PlaceholderPresentationContext custom_bottomCenter =
(PlaceholderPresentationContext) children.get(3);
PlaceholderPresentationContext custom_bottomRight =
     (PlaceholderPresentationContext) children.get(4);
%>
<render:beginRender>
     <table border="0" ... write style attributes ... cellspacing="0" >
          <tr>
               <td colspan="3" class="bea-portal-layout-placeholder-container"
                    <render:writeAttribute name="width" value="<%=custom_Top.getWidth()%>"/>>
<render:renderChild presentationContext="<%=custom_Top%>" /></td>
          </tr>
          <tr>
               <td colspan="3" class="bea-portal-layout-placeholder-container"
                    <render:writeAttribute name="width" value="<%=custom_center.getWidth()%>"/>><render:renderChild
                    presentationContext="<%=custom_center%>" /></td>
          </tr>
          <tr >
               <td class="bea-portal-layout-placeholder-container"
                    <render:writeAttribute name="width" value="<%=custom_bottomLeft.getWidth()%>"/>><render:renderChild
                    presentationContext="<%=custom_bottomLeft%>" />
               </td>
               <td class="bea-portal-layout-placeholder-container"
                    <render:writeAttribute name="width" value="<%=custom_bottomCenter.getWidth()%>"/>><render:renderChild
                    presentationContext="<%=custom_bottomCenter%>" />
               </td>
               <td class="bea-portal-layout-placeholder-container"
                    <render:writeAttribute name="width" value="<%=custom_bottomRight.getWidth()%>"/>><render:renderChild
                    presentationContext="<%=custom_bottomRight%>" />
               </td>
          </tr>
     </table>
</render:beginRender>

Sanket,
First test it using ADF Business Components tester. Does it work there?
If not, check your view link definition.
If so, make sure you have defined the correct View Object Usages in your application structure file.
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • The window title attribute for the page layout region has not been set

    Hi, I am a newbie to OA Framework extensions. Could you please advise me how to get rid of below error ?
    "The window title attribute for the page layout region has not been set. This attribute value will be used for the browser window title and should be set according to the UI standards. A default window title will be displayed for all such pages that violate the standards. Action: Set the window title or title attribute for the page layout region. The title attribute is used as a secondary source for the window title if the window title is missing."
    My requirement is to extend a VO and almost done with that but when i run the PG ( HomePG.xml ) file to ensure everything is fine , The target page is being displayed with above error. Just to let you know that i have already set the Titile and Window Title attributes for the HomePG.xml region i.e PageLayoutRN.
    One more thing i would like to share is that i was set the Window Title to 'Oracle Applications Home Page' , but target page name is being displayed as 'Oracle Applications'.
    Any suggestions ??
    Thanks.

    Hi all, I now getting below error when i click on notification from notification page ( AdvancWorklistPG.xml ) which should have taken me to the notification details page ( NotifDetailsPG ). Please note that i am running the page from Jdeveloper.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT NtfEO.NOTIFICATION_ID,
    NtfEO.RECIPIENT_ROLE,
    NtfEO.BEGIN_DATE AS BEGIN_DATE_F,
    NtfEO.DUE_DATE AS DUE_DATE_F,
    DECODE(NtfEO.MORE_INFO_ROLE, NULL, NtfEO.SUBJECT, FND_MESSAGE.GET_STRING('FND','FND_MORE_INFO_REQUESTED')||' '||NtfEO.SUBJECT) AS SUBJECT,
    NtfEO.PRIORITY AS PRIORITY_F,
    NtfEO.STATUS,
    NtfEO.END_DATE AS END_DATE_F,
    NtfEO.USER_COMMENT,
    NtfEO.MORE_INFO_ROLE,
    NtfEO.FROM_USER,
    NtfEO.FROM_ROLE,
    NtfEO.TO_USER
    FROM WF_NOTIFICATIONS NtfEO
    WHERE NtfEO.NOTIFICATION_ID = ?
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:597)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean.processRequest(OAPageButtonBarBean.java:351)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:953)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

  • I cannot upgrade itunes 10.1 or higher on Windows xp. I get the file 'C:\...AppleSoftwareUpdate\' is not a valid installation pkg for the product iTunes. Try to find the installation pkg in a folder for which u can intsall iTunes. Can't find folder. Now ?

    This is getting frustrating, it won't let me upgrade.  I get to a certain point where it tells me iTunes.msi is not a valid installation package for the product.
    What do I need to do?  I have bought a new Ipod & I have to update before I can download to my Ipod.

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Folio Builder: An error has occurred opening the source file for the article layout.

    I have been working on a Folio. When I sat down to work on my folio, I was instructed by indesign to update my Folio producer tools, which I did.
    Since then I can no longer view any article layout from that folio in indesign. Indeed any folio that I create that does not reside on my desktop give the same problem. I can import articles, add articles and they all upload to the proper place at adobe and I can view them. But I simply cannot open them up through folio builder as I previously.
    The exact error message is as below:
    An error has occurred opening the source file for the article layout.
    The InDesign file for the layout cannot be found.
    Another strange thing that seems to be happening is that the folio will randomly reoder the articles in the folio.
    I have dumped my indesign prefs, tried creating an entirely new project, made a new account and even reinstalled the entire software.
    But the problem of opening an article that I have imported or added to a folio, simply not being found to open has got me stumped. I can't proceed with a major project until I can sort this out.
    Can anyone help.
    Many thanks
    Steve
    The problem initially seemed very similar to the one linked below, but I dont get the content generation error
    http://forums.adobe.com/thread/901804?decorator=print&displayFullThread=true

    Questions about the Adobe Digital Publishing Suite should be posted in the DPS Forum.
    http://forums.adobe.com/community/dps

  • Layout for the angles of screen in swing application?

    I have noticed that does not exist a layout for the angles of the screen.
    I tried way in order to make it.
    Example => NorthEst o NortWest, SouthEst and SouthWest.
    Thanks

    import javax.swing.*;
    import java.awt.*;
    public class Frame3
        extends JFrame {
      JPanel jPanel1 = new JPanel();
      JPanel jPanelForm = new JPanel();
      JPanel jPanel3 = new JPanel();
      GridLayout gridLayout1 = new GridLayout();
      GridBagLayout gridBagLayout1 = new GridBagLayout();
      JLabel jLabel1 = new JLabel();
      JTextField jTextField1 = new JTextField();
      JButton jButton1 = new JButton();
      public Frame3() {
        try {
          jbInit();
          pack();
        catch (Exception ex) {
          ex.printStackTrace();
        this.setVisible(true);
      void jbInit() throws Exception {
        this.getContentPane().setLayout(new BorderLayout());
        jPanel1.setLayout(new BorderLayout());
        jPanelForm.setLayout(gridBagLayout1);
        jLabel1.setText("jLabel1");
        jTextField1.setText("jTextField1");
        jButton1.setText("jButton1");
        jPanel1.add(jPanelForm, BorderLayout.WEST );
        jPanelForm.add(jLabel1, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0
                                                    , GridBagConstraints.CENTER,
                                                    GridBagConstraints.NONE,
                                                    new Insets(0, 0, 0, 0), 0, 0));
        jPanelForm.add(jTextField1, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0
            , GridBagConstraints.CENTER, GridBagConstraints.NONE,
            new Insets(0, 0, 0, 0), 0, 0));
        jPanelForm.add(jButton1, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0
                                                     , GridBagConstraints.CENTER,
                                                     GridBagConstraints.NONE,
                                                     new Insets(0, 0, 0, 0), 0, 0));
        this.getContentPane().add(jPanel1, BorderLayout.NORTH );
      public static void main(String[] arg) {
        try {
          UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        catch (Exception ex) {
        new Frame3();
    }

  • Re: DW CC The usual choices for the Workspace Layout are missing. How can I restore them?

    The usual choices for the Workspace Layout are missing. How can I restore them?The usual choices for the Workspace Layout are missing. How can I restore them?

    The Insert panel has been reworked pretty significantly in DWCC (Spry has been dead for over a year now, so it no longer appears for instance), but can still be opened via Window > Insert then dragged to the toolbar location (to get the tabs back) by clicking and dragging the Insert tab up to the top of the application frame until it highlights. Once you drop it, it will then appear as a toolbar.
    Not all of the tools will be visible at all times. DWCC knows when certain things can't technically be used and it won't display them if they can't be inserted.
    EDIT: Oops, forgot to add this. Here is a link talking about what has changed in the Insert panel: http://helpx.adobe.com/dreamweaver/using/changes-insert-options-creative-cloud.html

  • "Predefined variant"" is invalid for the line layout.".u00A0

    Hi Gurus,
    Our user encounteres this error upon approval of invoices ""Predefined variant"" is invalid for the line layout.".  Please help on what triggers this error,
    thank you

    please see OSS Note 97264 - F5107: Release line item (Transaction FB13)

  • I am really angry that I get this message every time I try to update Itunes.  "The File 'C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi' is not a valid installation package for the product itunes.  Tr

    I am really angry that I get this message every time I try to update Itunes.
    “The File ‘C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi’ is not a valid installation package for the product itunes.  Try to find the installation package ‘itunes.msi’ in a folder from which you can install itunes.
    What kind of gobbledegook is that?  Are you or Microsoft crazy.  Us computer users need simpler instructions.  Or you need to write your programs so that they work.
    Signed,
    Frustrated Apple User
    Dean Weaver

    “The File ‘C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi’ is not a valid installation package for the product itunes.  Try to find the installation package ‘itunes.msi’ in a folder from which you can install itunes.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Editing The Fax Layout for the Send Message window

    Dear All
    Is it possible to view and edit the Fax Layout for the Send Message windows in SAP B1 9.0 PL52
    Best Regards
    shayan

    Hi,
    Please check SAP notes:
    693493
    - Recommended method for sending a fax via SAP Business One
    693490
    - Verifying a fax layout before it is sent to a customer
    Hope helpful.
    Thanks & Regards,
    Nagarajan

  • Error (Data mining): The specified mining structure does not contain a valid model for the current task.

    I'm trying to run the Cross validation report on a mining structure that contains just Microsoft Association Rules mining model. In Target Attribute, I've tried:
    Actual(Service Description).SE value
    Actual([Service Description]).[SE value]
    Actual(Service Description)
    Actual([Service Description])
    just because i don't know what is the exact correct format, but none of them worked, and I always get the following error:
    Error (Data mining): The specified mining structure does not contain a valid model for the current task.
    the following is my mining model structure

    Association rules does not allow for cross-validation
    Mark Tabladillo PhD (MVP, SAS Expert; MCT, MCITP, MCAD .NET) http://www.marktab.net

  • HT1925 Can't update iTunes because of error message "iTunes.msi is not a valid installation package for the produce iTunes".  How can I fix this?

    I can't update iTunes because of error message "iTunes.msi is not a valid installation package for the product iTunes". How can this be resolved.  I am using a PC with Windows XP

    If you can, uninstall and reinstall itunes..... Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Hope this helps.

  • My iPhone 3GS (working on iOS 6.1.3) has not backed up to iCloud for the past 10 weeks.

    My iPhone 3GS (working on iOS 6.1.3) has not backed up to iCloud for the past 10 weeks. And whenever I try Backing up to iTunes or to iCloud via either a pc or a Mac, I get the message: "Itunes could not backup the iPhone because an error occured". I tried turning off all apps for backup, but that did not help. I tried deleting all the photos and that did not help either. I tried the backup trobelshooting and I have tried using different computers. I'm completely stomped.

    Hi ShakedG,
    I'm not sure if this is what you were referring to, but I just wanted to make sure that you had seen the following article:
    iOS: Troubleshooting backup issues in iTunes
    http://support.apple.com/kb/ts2529
    Regards,
    - Brenden

  • Camera RAW does NOT yet support raw files for the new  Canon Sureshot S95

    Camera RAW does NOT yet support raw files for the new
    Canon Sureshot S95.
    Adobe, please can you provide an update asap

    Hello!
    I think that you need to be patient.
    There has not been any release of Camera Raw since the release of the camera.
    I recommend to try the next version once it will be released, as there might be preliminary support (and therefore not listed).
    Usually, Adobe is amongs the firsts to support a new camera.
    Even though the Camera Raw team is fielded with wonderful coders, I do not think that they do have a time machine to allow support before they have their hands on a camera

  • Photoshop CC with CS3 will not open Nikon NEF files for the D610.[was:CC]

    Photoshop CC with CS3 will not open Nikon NEF files for the D610. Is there a fix for this? Fast Eddy

    I assume you're running Photoshop CC (not sure what you mean by "with CS3" unless that's the version you upgraded to CC from)
    Download Camera Raw 8.3RC
    http://labs.adobe.com/technologies/cameraraw8-3-cc/?tabID=details#tabTop

  • ICloud is not backing up my contacts for the last month or so. i tried turning it on and off but to no avail. suggestions?

    contacts backup to iCloud
    iCloud is not backing up my contacts for the last month or so. i tried turning it on and off but to no avail. suggestions?

    if you can't get it to reboot then I would let it run out of power that result in a reboot if
    the screen then don't comes on when you charged it again then I would say hardware defect
    and repair needed

Maybe you are looking for