Dropdown List in Second Page Not Displaying First Page's Selection

Hi,
I have two pages. The first displays an employee hierarchy. So the first page displays several employee ids. When you click Edit, the second page only displays the emp_id because of this code in my dropdown list.
e.emp_id=:P2_X_EMPDROPDOWN;
The other dropdown lists do not get populated with the previous page selection. So my questions is how do I get the dropdown lists in page 2 to display the previous page's selection. So the focus of each of the dropdown lists should highlight the previous page's selection.
Thanks in advance.

If I understand your problem right, this can be the solution:
In the list of values definition of the seccond selectlist, you set this:
select e.LST_NM||' '|| e.frst_nm d, e.emp_id r
from
emp_table ethen your default value must be the Id selected on the first page. You can do this as follows:
Default Value Type is set to PL/SQL Function Body
Default value is
return :P1_X_EMPDROPDOWN;

Similar Messages

  • List of values is not displayed in web inteligence report

    I created a web inteligence report and put into my favourite folder. The report consist of a selectable list of values in a prompt but it does not appear in my favourites folder.
    The users with administrator rights that copied this report into their own favourites folder are able to see the list of values in the prompt.
    It seemed that the list of values does not display in the prompt when non administrator rights opened this report in their own favourites folder.
    Anyone can figure out how to set the access rights so that non administrator can see the list of values when the web inteligence report is opened in their own folder.
    I am using Business Objects XI 3.1 ..

    SOLVED
         CMC -> Connections
    -     Right click connection name, Click u201CTools > Check Relationshipu201D
    -     In u201CQuery Resultsu201D, Right click Connections, Click u201CUser Securityu201D
    -     Assign Security for u201CEveryoneu201D
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D
         CMC -> Universes
    -     Right click u201CUniversesu201D folder, click u201CPropertiesu201D
    -     Under u201CUser Securityu201D, click Everyone and assign security
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D

  • Portlets not displayed first time until refresh

    Hi,
    I have a strange bug when using WLP 8.1 sp5.
    When I go on a page for the first time, my page (Portal Page) is bad displayed : its title is diplayed but the inner portlet is not displayed.
    When I look at the source, I can see that the Portal rendering stopped at the page level (no HTML for the skeleton of portlets).
    If I refresh the page (just F5 or refresh button), the portlet "magically" appears.
    Do you have any idea ?

    For the both .portal and desktop
    It happens after login.
    I use a backing file with handlePostBackData method to check the login action.
    If everything is ok, I redirect the user to the private space.
    On this space, another backing file check that the user is authorized to access to the private space (so it checks for destroyed sessions, url hacks, ...).
    I can put the code of the backing files if you need it.
    After some tests, it seems to be a problem in relation with the page label. If the page label is a book , the portlet don't dipslay, but if the label is the full way to the page, it appears immediately.

  • Mac OS X 10.6 with Firefox 30. Issues with LI Dropdown menus. Menus do not display at all.

    We have a horizontal navigation menu in our application. The dropdowns are constructed using a UI LI menu. This used to work in all browsers up until a few days ago. Now the dropdown will not display. Only the top level menu. The user has Mac OS X Server V10.6 Snow Leopard.

    Did you check the Web Console (Firefox/Tools > Web Developer) for error messages about this issue?
    Is this done via CSS or via JavaScript?
    The first to try is usually to clear the cache and cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • How to display Column List (Search Bar - Do Not Display) in Ascending Order

    Hi,
    I am having a Interactive Report..
    In the Search Bar we have Select Columns, under that we have Do Not Display.
    where all the columns (currently not displayed) are listed.
    How can we display these columns in Ascending order
    Thanks,
    Deepak

    Do you want to display these columns in the IR?
    If yes. Select the column you want to display and click the the '>'.
    In the interactive report regions - source, where you have your query to select the columns use order by to sort them in assn order.
    Do you want to keep these columns as 'Do not display' and have them in assn order there?
    Select all columns to display and move the columns back to the 'Do not display' region one by one making selections in assn order.
    Or in the query select the columns in the order desired.
    I don't know if I am helping. I fell like I got your question all wrong. Still...
    Edited by: machan on Dec 11, 2009 11:01 AM

  • Not displaying first row in the table

    Hi
    I created web dynpro application. In that table,,
    Cardinality -
    0 to n
    Selection -
    0 to n
    public void wdDoInit()
        //@@begin wdDoInit()
         wdContext.currentLeaveElement().setLocation("1");
         for (int i = 0; i < EMP.length; i++)
                      IPrivateEtrecLeaveEligView.ILeaveElement element = wdContext. createLeaveElement();
                    element.setDepartment(EMP<i>[0]);
                    element.setLeaveType(EMP<i>[1]);
                          element.setYear(EMP<i>[2]);
                      element.setTimeSpan(EMP<i>[3]);
                      element.setNumofdays(EMP<i>[4]);
                   element.setLevel(EMP<i>[5]);
              wdContext.nodeLeave().addElement(element);
        //@@end
    In tha last declaration,,,,,,
    private static final String EMP[][] =
          { "Supply Chain", "Annual Leave", "2008", "Yearly", "20", "JC-16 Manager grade"},
         { "Finance", "Sick Leave", "2008", "Yearly", "23", "WL-2A"},
         { "Brands & Development", "Monthly Leave", "2008", "Monthly", "23", "WL-4A"},
         { "Supply Chain", "Annual Leave", "2008", "Yearly", "23", "WL-5A"},
         { "Finance", "Sick Leave", "2008", "Yearly", "23", "WL-6A"}
    But its not taking first row data in the table....
    will any one please help me where i did mistake.
    Regards
    Sushma

    Hi Sushma,
                     there is no problem in the below code :
    for (int i = 0; i < EMP.length; i++)
    IPrivateEtrecLeaveEligView.ILeaveElement element = wdContext. createLeaveElement();
    element.setDepartment(EMP[0]);
    element.setLeaveType(EMP[1]);
    element.setYear(EMP[2]);
    element.setTimeSpan(EMP[3]);
    element.setNumofdays(EMP[4]);
    element.setLevel(EMP[5]);
    wdContext.nodeLeave().addElement(element);
    //@@end
    but in the doinit method u have written this line  :
    wdContext.currentLeaveElement().setLocation("1");
    which means that , u have create a LeaveElement some where before this line and thats the reason the first row of ur table is empty.
    if the location value is same for all rows(for all leave element) then in the for loop set the value of the location as shown below:
    element.setLocation("1");
    Hope it helps
    Thanks and Regards

  • Only email lists showing, but will not display the message.

    My email (gmail) will only show the list of messages. When you click on it and select a message it does not bring up the usual message screen. It stays blank and tells me no message selected, but I do have one selected.  The mail list will slide to the left like its bringing the message up, but does not. Help.

    Quit the mail app completely. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. Launch mail again
    Or ....Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Web Gallery created in Bridge not displaying first picture correctly on a Unix server

    Hi Guys, Am really stumped by a problem that has surfaced after moving from a Windows web hosting server to a Unix hosting platform. The Web Galleries created in both Bridge CS4 and CS6 display and operate as expected on the Windows server. However, having moved to a Unix hosting platform, I observe an odd behavior when going to the Web Gallery page. When the gallery loads, it displays the first image offset. This is always the top left hand quarter of the picture, offset to show in the bottom left hand corner, leaving the top left and right quarters and the bottom left quarter black (I use quarters to best describe the situation, though it really does seem as if the view port of the Gallery is indeed quartered for this first image).
    If I click on the second image in the series, it appears full size. The same happens if I click on the "Play" button. If I return to the first image manually, it displays full size.
    The phenomenon is apparent in Firefox 19.0.2, IE9, Opera and Chrome, all of the latest build.
    Can anyone throw some light on why this phenomenon is occurring and better still, suggest a cure?
    Grateful for all and any help anyone can give.
    Cheers, Daviddhg

    Hi Guys, This turned out to be a Unix server-side issue. Apparently the compression software being used by the ISP on this server was in some way incompatible. The ISP turned the compression off and the problem was cured.
    Cheers, Daviddhg

  • List column drop down not displaying all choices when user has read permissions

    One of my co-workers created a workflow with an associated list. I gave a user read permissions to the list but they cannot view or filter all of the choices from a column.  For example the column is named STATUS and has 4 choices, COMPLETED, CANCELED,
    IN-PROGRESS and NOT STARTED but the user is only able to view the COMPLETED items.

    Hi brianti,
    For troubleshooting this issue, please provide the followings:
    Could other user with full control see all items?
    How did you create the list? I am wondering whether you enabled Content Approval in the list. If yes, please go to List settings->Versioning settings, select "Any user who can read items" under "Who should see draft items in this
    list? ".
    How did your co-worker create the workflow? Please provide the actions that your co-worker used in the workflow.
    If you provide the above, it will make others in the forum easy to find a solution for you.
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Cisco SPA-504G: Retrieving Broadsoft Personal directory does not display first and last name

    Hi,
    We are using the Cisco SPA-504G on BroadWorks Release 17.sp3. We are using the feature to lookup the different BroadWorks directories through the 'dir' button on the Cisco phone. For configuration you have three choices for telling the phone which directory it needs to retrieve:
    - Personal
    - Group
    - Enterprise
    This can be found by going to Voice -> Phone -> Broadsoft Settings in the web GUI of the phone (admin & advanced mode).
    When retrieving the Enterprise or Group directory everything is working OK. I can see the names and the corresponding phonenumbers of the users.
    When retrieving the Personal directory I only see the phonenumbers and not the names of the entries. This is probably due to the fact that the XML output of the Personal directory is different compared to the Enterprise/Group directory. Personal directory is like:
    <Personal><startIndex>1</startIndex><numberOfRecords>2</numberOfRecords><totalAvailableRecords>2</totalAvailableRecords><entry><name>Name X</name><number>0123456789</number></entry><entry><name>Name Y</name><number>0987654321</number></entry></Personal>
    Result of requesting: http://xsp.domain.tld/com.broadsoft.xsi-actions/v2.0/user/[email protected]/directories/Personal
    Group directory is like:
    <Group><startIndex>1</startIndex><numberOfRecords>1</numberOfRecords><totalAvailableRecords>1</totalAvailableRecords><groupDirectory><directoryDetails><userId>[email protected]</userId><firstName>FirstName</firstName><lastName>LastName</lastName><hiranganaLastName>LastName</hiranganaLastName><hiranganaFirstName>FirstName</hiranganaFirstName><groupId>BroadWorksGroupID</groupId><extension>9999</extension></directoryDetails></groupDirectory></Group>
    Result of requesting: http://xsp.domain.tld/com.broadsoft.xsi-actions/v2.0/user/[email protected]/directories/Group
    As you can see the name of a user in the Personal directory is defined by <name></name> and the name of a user in the Group directory is defined by <firstName></firstName> <lastName></lastName>.
    So it looks like the phone is not capable of parsing the XML output of the Personal directory request. And to me that looks like a bug.
    Anyone that can acknowledge?
    Kind regards,
    Bart Derks
    RoutIT B.V.
    edit: We are running firmware 7.4.9c.
    Message was edited by: Bart Derks

    Our upcoming release scheduled for the end of this month should resolve this issue.  There were a number of fixes in this particular area that were made.

  • After waking from sleep list of users is not displayed

    I have two users configured on my MacBook Pro.  With Snow Leopard, if a user put the compter to sleep, on wakup you could switch users.  After installing Lion, when a user puts the compter to sleep, only that user is able to wake it up. The screen shows only that user name, a field to enter their password, a "cancel" button and a "restart to safari" button.
    Does anyone else have this problem?  Any ideas?

    Not on my screen it doesn't. Apparently when I installed iCloud beta it messed up user switching. I had to reinstall Snow Leopard from Time Machine and then reinstall Lipn to fix the problem.

  • Accordion problem: child not display first time added

    I have an mx Accordion that I extend to add some simple functionality (e.g., replace a child content at certain index). I tested it in a clean window and everything seemed to work fine, until I use it in my "real" app.
    The problem is when I add a child content to it, the child never bothers to show up until after I click on another header and then go back to click on the header of the child that was just added. I try to call "invalidateParentSizeAndDisplayList();invalidateDisplayList(); invalidateSize();" in the child content's addhandler, and on the Accordion's "childAdd" handler, without luck.
    Anyone has encountered this before? This is probably not the best place to ask for troubleshooting tips but this is really driving me crazy. Any lead is really appreciated!

    ok. i figured it out. setting the "creationPolicy" of the navigatorContent to "all" solves the issue!

  • How can I add a website to a 'block' list so that Mozilla will not display it as a selection in a Google search?

    I search for images with no filtering using Google and receive a bunch of sites that are known for installing Trojans or other malware. One of them ends with brstsecond.net. 'brstsecond" seems to be bad in any web address. In fact, any website with more than two dots-names between the "www" and the ".com or .net" seems to be one to avoid.
    Doesn't Mozilla have a blacklist that I can add sites to?

    Hi Karlo Medallo,
    Since this issue is related to the VS Online, I am moving your thread into the
    Visual Studio Online
    Forum for dedicated support. Thanks for your understanding.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Graph in BEX not displaying data for the selected range

    Hi Gurus,
    I am running a report for the calweek 200801-200840. But the graph is displaying value upto 200835. The data is available in the cube till 200840.
    Please help!!
    Thanks
    Nisha

    Hi Nisha,
    Please check once again whether there is data for 200836 to 200840 for the corresponding selections and restrictions you have mentioned in the design of your query.
    Regards,
    Suresh

  • Brush files not displayed when "load brushes" selected

    i am using ps cs3. i have more brushes than i can display so have created a separate brushes folder within the adobe photoshop cs3 folder. it's on the same level as the presets folder. until recently, i've been able to go to that folder from the 'load brushes' option. now, however, when i select 'load brushes' only a few folders are displayed within the adobe ps cs3 folder. i can no longer see my brushes folder [the one that's on the same level as the presets folder].
    on the screencap, you can see the brushes folder and the presets folder. i should be able to navigate to the brushes folder from within photoshop but it doesn't appear.
    this is what i see within ps cs at the same level:
    why isn't the brushes folder showing from within ps? i've been using it for ages and suddenly it doesn't appear.
    i'd be grateful for any help or suggestions. thanks so much.

    i thought this was going to solve the problem but it doesn't. the file path as shown from the load dialog box looks like this
    however, when i try to find the *application data* folder starting at c: so that i can follow the path and move the brushes, the application folder doesn't appear under c:\documents and settings\ellie\ nor can i find it using the search command.
    here's a screencap of the windows explorer bar. there is no application data folder. i'm totally baffled.
    i don't understand what i'm doing wrong or what the problem is. ??? i'd be grateful for any further help. if i have to, i can load brushes individually, but i'd really like to understand where i'm going wrong.
    thanks in advance.

Maybe you are looking for