Flexible Layouts

Hello all, I am trying to learn how to achieve this effect of
design, where the background resizes without distortion when the
browser window is resized while other elements remain the same size
http://www.dollhouse.com and
have looked everywhere for tutorials or books that explain how this
is done to no avail. Can someone tell me how this is done?

Can someone please point me to the right direction. A book,
tutorial or blog discussing this effect?

Similar Messages

  • Horizontal scroll bar in OAF screen flexible layout

    Hi Gurus,
    We have developed an OAF screen using flexible layout. Currently we have two tabs showing in the same window. We are unable to increase the number of columns in the result table of the flexible layout as there is no horizontally scroll bar getting added dynamically.
    Please let me know any pointers on this.
    Thanks in Advance.
    Thanks & Regards,
    Nagesh.

    Tapash,
    I hope ur talking about this thread:
    Page Scrolling
    User did it in JTF i.e. jsp not in OAF, thats' what I was thinking, because OAF does not provide js api's for OATableBean, unless I create my own custom table , like we do in jsp.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Flexible layout will not work with preloaded

    Hi I am building a site in Edge Animate with Responsive layout to enable viewing in multiple devices.
    The flexible layout works fine but the loading wait is too long.
    As soon as I put a simple pre-loader to work the flexibility doesn't
    Here is one page of the site currently being re-built.
    http://www.theshaa.com/Templates/home/home.html
    Any ideas will be welcome. Thank you
    Tony Dickins

    Hi
    I have resolved this issue. The problem was that the Max page height was set to "none."
    When I unchecked the item and set a max hight for the stage the Preloader worked with the flexible layout.
    OK

  • Episode 2: Flexible Layouts Using Adobe Edge Animate and the Edge Commons Library | Create Like Crazy with Adobe Edge | Adobe TV

    With Adobe Edge Animate you can create flexible layouts easily. In this lesson you will learn how to use percentage values, alignment and several other layout presets to build flexible layouts that look great across all screens. You will also learn how to create different adaptive layouts for specific screen sizes using the Edge Commons library.
    http://adobe.ly/QnCdXY

    No ADOBE TV videos play. Not in the latest Firefox nor IE. The play icon appears - I click it  - and the frame remains black -- no error message, nothing. I even tried accepting 3rd party cookies- nothing.  I can play videos fine from othe sites, youtube .... etc ....

  • How can export psd file to html including css in center position at  flexible layout

    need urgent help

    Html is not an image format. It is a text format that can point to a png or jpg image in your web page.
    Depending on the image, it may be easier to just export as a jpg or png and let dreamweaver worry about the html and css.
    However, if you preview the image from the save for web dialog box in a web browser, it will give you the html code, that was generated for that preview.
    In the windows menu you should find a css panel to use.

  • In Flexible Layout DWCC I cannot the 5 menue ittems in my nav box to move from vertical to horizontal.

    Also, How do I put up a screen grab here@

    Hi Jon-- Thank you so much for helping- what do you mean about the block? I am in a navigation div- where do I add display block?
    Jack

  • Reports layout - how flexible?

    As far as I can see when I'm creating reports there are two basic type of layouts - one is a table where the columns are one next to the other, and the other is a "form" where the fields are one is under the other.
    Can I somehow get more flexible layouts?
    For example be able to specify that some fields will be placed side by side and other in new lines?
    Thanks,
    Shay.

    you'd want to use a report row template to achieve that kind of formatting. we talk about them in our current OTN technote at...
    http://www.oracle.com/technology/pub/notes/technote_htmldb_format.html
    ...can you take a look there and let us know if you need further assistance?
    thanks,
    raj

  • Need a good liquid layout tutorial

    Hi,
    Im starting a page which I plan to use a liquid layout. I think I would use the three column layout (middle widest) and I would like to have an image situated in the right column. When the browser window shrinks, i would like this image to basically stay in its spot so Im guessing I would have to resize it or something. Im not totally sure. I found a tutorial the other day which showed what to do with your images. This tutorial made three different sizes of a single image to accommodate different resolutions. This is what i am going to need
    Can anyone point out a good tutorial that would have this information? Ive looked everywhere and cant seem to find one that has images involved
    Thanks in advance

    I don't think you need 3 separate images, if you are using a liquid or flexible layout, the image will adjust within the layout as will all the other content.
    Here's an Adobe tutorial on liquid layout:
    For a tutorial on fluid layouts
    http://www.adobe.com/devnet/dreamweaver/articles/bk_dwcs4_mastering_css/bk_dwcs4 _mastering_css_04.pdf
    and another from alistapart:
    http://www.alistapart.com/articles/negativemargins/
    Faux column technique:
    http://www.alistapart.com/articles/fauxcolumns/
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • Layout: multiple rows of different lengths

    Ok for one im kinda new to java so all this swing stuff is still in a limited understanding for me. I am doing quite well with it, but i am trying to have a set of buttons, 50 in fact. There are like 10 rows. Now the problem is that the first 3 rows are different lengths such as:
    x is a button
    x x x x x
    x x x x x x x
    x x x x
    x x x x x x x x x
    x x x x x x x x x
    x x x x x x x x x
    x x x x x x x x x
    x x x x x x x x x
    x x x x x x x x x
    sorry about the horrible illustration, what im trying to say is that the first row has lets say 5 buttons, then the second row has 6 then the 3rd has 4 and then the remaining ones have 5. How would i come about this. I have tried using multiple jpanels like in the code below, but only the last one is being displayed, how would i do this?
    If you need more info post that you need it.
    Thanks
    CODE:
    JPanel pane1 = new JPanel(new GridLayout(0, 1));
    pane1.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30));
              JPanel pane2 = new JPanel(new GridLayout(0, 5));
    pane2.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30));
              JPanel pane3 = new JPanel(new GridLayout(0, 6));
    pane3.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30));
              JPanel pane4 = new JPanel(new GridLayout(0, 4));
    pane4.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30));
              JPanel pane5 = new JPanel(new GridLayout(0, 5));
    pane5.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30));
              JTextArea displayBox = new JTextArea("Hello");
              pane1.add(displayBox);
              JButton[] buttons = new JButton[50];
              for (int x=0; x < 50; x++)
                   buttons[x] = new JButton(normKeys[x]);
                   if (x <= 4)
                        pane2.add(buttons[x]);
                   else if (x <= 10)
                        pane3.add(buttons[x]);
                   else if (x <= 14)
                        pane4.add(buttons[x]);
                   else
                        pane5.add(buttons[x]);
              frame.getContentPane().add(pane1, BorderLayout.CENTER);
              frame.getContentPane().add(pane2, BorderLayout.CENTER);
              frame.getContentPane().add(pane3, BorderLayout.CENTER);
              frame.getContentPane().add(pane4, BorderLayout.CENTER);
              frame.getContentPane().add(pane5, BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);

    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizontally, without requiring that the components be of the same size. Each GridBagLayout object maintains a dynamic, rectangular grid of cells, with each component occupying one or more cells, called its display area.

  • Layout BPS

    Hi all,
    I need to put in my BPS-layout in lead column both characteristic and key figure and in data column only a characteric.
    Example:
    Insert in lead column 0CUSTOMER and 0QUANTITY
    Insert in Data column OCALMONTH
    How can I do it?
    Thanks in advance
    Gianmarco

    Ciao,
    i think I have lost track what you want to do.
    Maybe we start with general answers first.
    the most flexible layout will be possible using key figures only in columns.
    then you are able to select several characteristics for the rows (key column) and you can define "selected key fiures" in columns
    If you want for whatever reason to put your key figures in rows, you are somewhat restricted.
    Together with key figures and always for columns you are able to select only one characteristic as flexible.
    All other characteristics can then only be put into the selected key figures.
    I hope this helps.
    If not, then please list your full requirement.
    Which are the key figures, which are the chars, whicht you want to use where in your layout and can you select single values for the chars or do you need it to be flexible.
    Ciao
    Cornelia

  • Table Layout RN help

    Hi,
    In my custom page there is a table layout region with 4 rows and two columns.
    I want to show borders for this table layout region
    Can anyone please help me how can I enable borders either programatically or declaratively ?
    I'm also searching for any relavan methods in TableLayout class.
    Please share your thoughts
    Thanks

    Yes there is a way to Border a region .... Use Flexible Layout and in the Flexible Content you may define the Borders .
    Im not sure of any other approach ... but this is a very easy way for doin so....

  • Exporting smaller PDF dimensions than InDesign layout dimension

    Hi, a PDF looks best when viewed at 75% zoom in Adobe Reader. How can I export an entire 80 page InDesign document at this "75% zoom" resolution (so clients cannot zoom up to 100% in a PDF reader and see artifacting)? 
    There are too many images to update/modify by hand within InDesign...I'd just like to export the original InDesign layout at 75% of what it is within InDesign, to see if that will improve image quality when the exported PDF is viewed at 100%
    thanks!

    Here's another approach introduced in InDesign CS6. It's now easier to create flexible layouts using the Create Alternate Layout feature.
    I duplicated a 15-page layout set up at letter size to one set up at 75% scale (6.375" x 8.25").
    I used the Liquid Layout panel to set the master pages to the Scale liquid layout rule. This scales everything on the page.
    Then I selected all document pages and applied the Controlled by Master liquid layout rule.
    I created a new custom page size called 75% Scale.
    Then I chose Layout > Create Alternate Layout. In the dialog I selected the original page size and selected the alternate page size:
    Everything scaled to the new size:

  • Help my flexible sites

    Hello everyone! I would like to make a flexible layout of the site, below the text posted a video with pictures of PNG. Mobile text flexible (css style: section), but for the video(pink square) which is included in my (css stule: #videomaterial), it does not bend to the size + like to have gone to teleofna PNG pictures, I hope for your support and help ..

    Hi Air999dreamson,
    I hope the links below help you.
    http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
    http://css-tricks.com/NetMag/FluidWidthVideo/demo.php
    Thanks
    Bhawna

  • Adding new region to Standard page

    Hello,
    I need to add new region to display added details to the Paid Off Balance Screen.
    In Jdev, i was able to create a new messageComponentLayout Region and added the correspnding datapoints.
    Should i always create it as flexibleLayout only, i read through the forums this is the method to follow.
    Is my approach wrong, please suggest.
    Thanks!

    Hello,
    I created a new page and during personalization i was able to create Flexible Layout but during creation of flexible content region , i get the error,
    Error in getting element definition of page
    values passed are
    ID : YTDRg
    Extends:/xbol/oracle/apps/xbol/selfservice/loa/webui/YTDAccrualPG
    The foll. is the page
    <?xml version='1.0' encoding='UTF-8'?>
    <page xmlns:jrad="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" version="9.0.3.8.12_1330" xml:lang="en-US" xmlns:user="http://xmlns.oracle.com/jrad/user" xmlns="http://xmlns.oracle.com/jrad"
    file-version="$Header$">
    <content>
    <oa:pageLayout id="YTD" controllerClass="xbol.oracle.apps.xbol.selfservice.loa.server.webui.YTDAccrualCO" amDefName="xbol.oracle.apps.xbol.selfservice.loa.server.YtdAccAM" title="Year to Date Accruals and Time Taken (total hrs.):">
    <ui:corporateBranding>
    <oa:image id="corporateBrandingImage" source="/OA_MEDIA/FNDSSCORP.gif"/>
    </ui:corporateBranding>
    <ui:contents>
    <oa:messageComponentLayout id="YTDRg" rows="5" columns="2">
    <ui:contents>
    <oa:messageStyledText id="VaPlAc" prompt="US Vacation Plan Accrual" viewName="TestVO1" viewAttr="LastName"/>
    <oa:messageStyledText id="SiPlAc" prompt="US Sick Plan Accrual"/>
    <oa:messageStyledText id="FlPlAc" prompt="US Floating Holiday Plan Accrual"/>
    <oa:messageStyledText id="PePlAc" prompt="US Personal Leave Plan Accrual"/>
    <oa:messageStyledText id="item1" rendered="true"/>
    <oa:messageStyledText id="VaTk" prompt="Vacation Taken"/>
    <oa:messageStyledText id="SiTk" prompt="Sick Taken"/>
    <oa:messageStyledText id="FlTk" prompt="Floating Holiday Taken"/>
    <oa:messageStyledText id="PeTk" prompt="Personal Taken"/>
    <oa:messageStyledText id="AcBaTk" prompt="Accrual Bank Taken"/>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:pageLayout>
    </content>
    </page>
    Please let me know.
    Thanks !

  • Error in creating a new region in OAF

    I have created a new region and wanted to associate it to an existing page through personalization. Initially it errored out just on creating the Flexible layout where i just provided the id name. After bouncing the server several times, at one point of time i was successfull in associating the region by following the same steps, by which it was erroring out previously.
    Things were working fine. Now due to some other requirement i bounced the apache server one more and now again it is erroring out...
    Following is the error message:
    Logout
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.adf.mds.exception.MDSRuntimeException: Unable to find component with absolute reference = /xxdev/oracle/apps/po/reqsummary/webui/XXDEVReqSummaryRN.LinesResultsTable.Supplier, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:2142)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:532)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:420)
         at OA.jspService(_OA.java:213)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.adf.mds.exception.MDSRuntimeException: Unable to find component with absolute reference = /xxdev/oracle/apps/po/reqsummary/webui/XXDEVReqSummaryRN.LinesResultsTable.Supplier, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:195)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1103)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.adf.mds.MElement.getLocalRef(MElement.java:291)
         at oracle.adf.mds.internal.XMElementImpl.<init>(XMElementImpl.java:367)
         at oracle.adf.mds.internal.XMElementImpl.createChild(XMElementImpl.java:656)
         at oracle.adf.mds.internal.XMElementImpl.resolveDescendants(XMElementImpl.java:282)
         at oracle.adf.mds.internal.XMElementImpl.resolveDescendants(XMElementImpl.java:283)
         at oracle.adf.mds.internal.XMElementImpl.getGroupings(XMElementImpl.java:120)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1163)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processPage(JRAD2AKMapper.java:1008)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.loadPage(JRAD2AKMapper.java:797)
         at oracle.apps.fnd.framework.webui.OAPageBean.initializeCustomizationsMDS(OAPageBean.java:6592)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2317)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1888)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:532)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:420)
         at OA.jspService(_OA.java:213)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    oracle.adf.mds.exception.MDSRuntimeException: Unable to find component with absolute reference = /xxdev/oracle/apps/po/reqsummary/webui/XXDEVReqSummaryRN.LinesResultsTable.Supplier, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:195)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1103)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.adf.mds.MElement.getLocalRef(MElement.java:291)
         at oracle.adf.mds.internal.XMElementImpl.<init>(XMElementImpl.java:367)
         at oracle.adf.mds.internal.XMElementImpl.createChild(XMElementImpl.java:656)
         at oracle.adf.mds.internal.XMElementImpl.resolveDescendants(XMElementImpl.java:282)
         at oracle.adf.mds.internal.XMElementImpl.resolveDescendants(XMElementImpl.java:283)
         at oracle.adf.mds.internal.XMElementImpl.getGroupings(XMElementImpl.java:120)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1163)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processGrouping(JRAD2AKMapper.java:1403)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processRegion(JRAD2AKMapper.java:1245)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.processPage(JRAD2AKMapper.java:1008)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.loadPage(JRAD2AKMapper.java:797)
         at oracle.apps.fnd.framework.webui.OAPageBean.initializeCustomizationsMDS(OAPageBean.java:6592)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2317)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1888)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:532)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:420)
         at OA.jspService(_OA.java:213)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Logout
    Copyright (c) 2006, Oracle. All rights reserved.

    But this is not happening for other pages..only this page is creating problem...
    This region I am creating for the page whose navigation is as shown below:
    1) Login as PO Super User
    2) Go to Requisition Work Bench -> Requisitions -> Summary -> Lines Tab.
    In this page in the search region I need to add one Criteria Item named Requisition Description
    Now in our development instance,creating a Criteria Itme for this region through personalization is not enabled. But the same thing is enabled in the Test Environment. However if I go and just click on Create Item -> Criteria row and provide the id name and click on Apply the page is erroring out. Would anyone please try replication the same in their available instance and let me know whether they are facing similar issues.

Maybe you are looking for

  • WAD report execution failure

    hi We created a Web template in Bex WAD for a report and trying to execute it, it opens the portal's default page instead of executing the report. Can anyone figure out the possible issue, please? Regards Lavanya

  • Live stream in different resolutions

    hello, I have an urgent question for the following purpose. We plan to develope a solution consisting of a sender software for streaming live video to the streaming server. Now more than one client should be able to connect to the stream of the serve

  • Blackberry Playbook cracked screen.

     How to repair? Replace. Thanks I believe it is the outer glass...I have a screen protector film on top.

  • Wwsto_api_session API

    Hello, Is there a way to query all the contents of a session object without specifying an attribute? At the moment I'm successfully using the likes of: myValue := l_store.get_attribute_as_varchar2('myAttributeName'); However, I want to loop through E

  • 'Client Changes' must be allowed when download which kind of object?

    Dear Expert, When we download some kind of objects from ECC to CRM, we must set allow 'Client Changes' via SCC4. For example, download DNL_CUST_CNDALL Do we have to  allow 'Client Changes' via SCC4 before download all customzing objects? How about Bi