Drop Down List empty when user trying to create a Shopping Cart.

Hi,
    While Creating a Shopping cart.User is unable to select a vendor or a category from the drop down list,As the Drop down list is empty.I have Checked The Extended Attributes Tab for the user in PPOMA_BBP tcode.Are There any other configurations to be checked.
Appreciate your inputs!!
Thanks
Rakesh.

Hi Muthu,
             Thanks For your reply.The User is trying to create a Shopping cart,Whilst creating it he is trying to select a Vendor from the Drop downlist.But the drop down list is showing up empty values.The User is unable to pass the vendor to the shopping cart from the drop down list.
Thanks
Rakesh.

Similar Messages

  • Multiple drop down lists that allow users to select 3 unique choices from a list of options

    Lawanna Wice - 2:18pm Mar 15, 05 PST (#1 of 1)
    I'm creating a form from scratch in Adobe Designer. Well, the problem I'm having is I'm trying to create dropdowns in my form and I need three dropdowns with the same information but I would like to only select three of the items from each dropdown but I'm not sure what I need to do. I hope you'll understand.
    Ex: Directions: Please select your 1st, 2nd and 3rd peference from the listing but do not select the same perference, it has to be different.
    1st Preference: RCC, UPPP, AAA and TO
    2nd Preference: RCC, UPPP, AAA and TO
    3rd Preference: RCC, UPPP, AAA and TO
    The object is for them to select only three but not the same for each prefence but how can I create it in the form.

    Lawanna,
    Here is an example that is similar to what you are looking for.
    Click here to see it

  • Error when users tries to create a cart.

    Hi there ladies and gents,
    We are getting an error when a user is trying to create a cart, the following error appears
    "No data found for contact person "XXXXXXXX" Inform system administrator"
    We have check PPOMA_BBP and also HR have checked there area and all seems ok???
    Any ideas???

    What i can tell you after running BBP_BP_OM_INTEGRATE for business partner, employee role, i get the following : -
    @5C\QError@     Error determining address for employee DD0A7F0F4A3D83F1AA8D0016353BF3FF     @5F\QNo long text exists@
    and
    @5C\QError@     Employee relationship between BP 0000004261 and BP(Org) 0000002669 missing     @35\QLong text exists@
    The help says the following but i am sorry to say it means nothing to me : -
    Employee relationship between BP 0000004261 and BP(Org) 0000002669 missing
    Message no. BBP_UM_UI040
    System Response
    The assignments of the BP units of the employee &V2& -> Natural person of the employee (if necessary -> Contract) -> Work Center -> Position -> BP of the Position lead to BP &V1&. There is, however, no connection between the business partner objects.

  • Selecting values in drop down list

    Iam trying to create the drop down list. I got some programs, creating these lists for both parameter and ranges on the selection screen using 'VRM_SET_VALUES' . What the user wants is when the selection screen is loaded, he wants to select from the list OR ENTER ANY DATA WHICH IS NOT THERE IN THE LIST. To be able enter any data other than what is there in the list is not working for me.
    plz help its urgent

    Do you want to do it clientside (DHTML/JS/DOM) or serverside (JSP/JSTL)? This is easy to do clientside, but as you're asking this issue in a JSP/JSTL forum ..

  • Problem with drop down list: on Windows it works, on Mac doesn't

    Dear forum,
    I am reworking the MultiPageImporter2.5 script by Scott Zanelli; going to add some new features.
    So far I added a drop down list so the user could choose on which pages to place a pdf/indd file: odd/even/both.
    However I encountered a strange problem: on Windows it works as expected, but on Mac nothing happens when I click the popup. When I write a dialog, I almost always use automatic layout and never encountered such a problem before. But in this script the author uses fixed position for the controls so I followed his coding style:
    dLog.pageSideMode = dLog.pan4.add('dropdownlist', [10,110,180,40], ["Odd and Even Pages", "Only Odd Pages", "Only Even Pages"]);
    dLog.pageSideMode.selection = pageSideMode;
    The drop down list is visible both on Windows and Mac, but on Mac it’s not clickable. What am I doing wrong?
    Another question: in the script, the author created three popups. In the code, each popup has a different height (the last element of the “bounds” array) – 60, 88, 33. Does it make sense to make them different if on the screen they look exactly the same (I mean height).
    Here’s my version of the script.
    I think the easiest solution for me here is to rework the dialog part from fixed to automatic layout.
    Thanks in advance.
    Kasyan

    Hi johniko,
    In my version of the script, the user will have to choose a file to be placed directly in the dialog box. The selected file can be saved into a preset. I'm reworking it for another person (not for myself) and that's what he wants.
    Regards,
    Kasyan
    P.S. By the way, you can simply merge all your pdf-files into a single document in Acrobat.

  • Show Drop Down List

    Post Author: snufse
    CA Forum: General
    We have a report that prints data from a Sales Ticket table. The report has one parameter which is a Shift Start Date/Time. The Shift Start Date/Time is a field in the Sales Ticket table that goes with each Sales Ticket and also a field in a Shift table. When operator closes a shift, the Sales Tickets are updated with the Shift Start Date/Time and a new entry is made into the Shift table.
    Now we need to run a sales ticket report that uses the Sales Ticket table and selects by Shift Start Date/time. Is there a way in the parameter entry screen to show user a drop down of all valid Shift Start Date/Time entries from the Shift table, this is the only way user will know what valid shift parameters exist. Now they have to run a shift report, pick the shift from the report and manually key that in as a parameter.
    Thank you.

    Post Author: snufse
    CA Forum: General
    We are on CR XI product version 11.5.8.826.
    I was reading about using a Command Object (connect to your datasource and entering sql command). If this is correct how could I get the result to show in a drop down list and have user select a line and use this as a parameter for creating the report?
    Could you pleaseoint me in a direction where I might pick up some tutorial on how to do this. Thank you.

  • How to Pre-select Value in auto drop down list

    Hi,
    I have an automatically populated drop down list, and I'm trying to have it display with a pre-selected value (in the example 5). I didn't know where to start, so I modified the Dreamweaver code for "Set value equal to" from the Dynamic list function.The list displays, but the value defaults to 0. What am I missing?
    <?php
    echo '<select name="firstnumber" id="number">';
    for ($j=0; $j<11; $j+=1)
    echo  "<option value=\"$j\" <?php if (!(strcmp(\"$j\",5))) {echo \"selected=\"selected\"\";} ?>$j</option>\n";
    echo '</select>';
    ?>
    Thanks,
    Tim

    The problem is that you have nested PHP tags inside a PHP block. You can't do that. In fact, it's surprising that the code works at all. Normally, nesting PHP tags inside a PHP code block will trigger a syntax error.
    Also, your code is very difficult to read because of the way you use double quotes all the time. It's best to use single quotes for strings, except when you need to display the value of a variable inside a string. You can also nest double quotes inside a single-quoted string and vice versa, making for code that's much easier to read without all the backslashes.
    This is how I have rewritten your code:
    <select name="firstnumber" id="number">
    <?php
    for ($j=0; $j<11; $j+=1) {
      echo  "<option value='$j'";
      if (!(strcmp($j,5))) {
         echo 'selected="selected"';
      echo ">$j</option>\n";
    ?>
    </select>

  • Advanced Drop Down List greyed out

    I believe that the h1, h2 heading tags should be available under the advanced drop down list. When I try to edit a page and place a h1 tag I can't because the Advanced drop down list is greyed out and I can't use ti.

    Hello lfrith,
    Please post the URL for the site you're working with. I'll take a look at the source and styling options applied to the region. Is the Advanced menu grayed out when trying to edit all edtiable regions in your page? Did it ever work with your page?
    Best regards,
    Corey

  • Adobe LC ES2 :: Display Drop Down List Options On Print

    Hello Forum!
    A customer of mine is looking for a way to display a drop down list items when a user prints out the Adobe Extended form. Is this possible?

    Hi,
    you could have a dropdownlist for the user to be able to choose its option, but when coming to printing, you could be setting the dropdownlist to visible(screen only) and have a listbox set to visible(print only) with all the dropdownlist options.
    Hope this hleps.

  • Dynamic Drop Down List Trouble in Dreamweaver

    I am having trouble with Dreamweaver 8 and php with MySQL.
    Basically, I have a main page, index.php that includes a
    header file that I use to display my header using readfile like
    this:
    <?php readfile("header.php"); ?>
    Inside of header.php, there is code to create a drop down
    list. I am trying to populate this list from my database, but I
    cannot get this to work.
    This is the code snippet:
    <form name="storeShowSelect" method="GET"
    class="sf_select" target='newwin'>
    <input name="selectStore" type="hidden" value="17999">
    <select name="storeSelect"
    onChange="jumpToLink(this);">
    <option disabled selected >--- Select a store
    ---</option>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_marketplaceStoreNames['storeName']; ?>">
    <?php echo
    $row_marketplaceStoreNames['storeDisplayName']; ?>
    </option>
    <?php
    } while ($row_marketplaceStoreNames =
    mysql_fetch_assoc($marketplaceStoreNames));
    ?>
    </select>
    </form>
    It looks like this is only inserting one blank row in the
    drop down list. When testing my recordset in Dreamweaver, I do get
    the rows of data that I am expecting.
    Can anyone possibly help me figure out what I am doing wrong
    here?
    Thanks in advance,
    Mona

    I am having trouble with Dreamweaver 8 and php with MySQL.
    Basically, I have a main page, index.php that includes a
    header file that I use to display my header using readfile like
    this:
    <?php readfile("header.php"); ?>
    Inside of header.php, there is code to create a drop down
    list. I am trying to populate this list from my database, but I
    cannot get this to work.
    This is the code snippet:
    <form name="storeShowSelect" method="GET"
    class="sf_select" target='newwin'>
    <input name="selectStore" type="hidden" value="17999">
    <select name="storeSelect"
    onChange="jumpToLink(this);">
    <option disabled selected >--- Select a store
    ---</option>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_marketplaceStoreNames['storeName']; ?>">
    <?php echo
    $row_marketplaceStoreNames['storeDisplayName']; ?>
    </option>
    <?php
    } while ($row_marketplaceStoreNames =
    mysql_fetch_assoc($marketplaceStoreNames));
    ?>
    </select>
    </form>
    It looks like this is only inserting one blank row in the
    drop down list. When testing my recordset in Dreamweaver, I do get
    the rows of data that I am expecting.
    Can anyone possibly help me figure out what I am doing wrong
    here?
    Thanks in advance,
    Mona

  • Dynamically populating data for the drop down lists

    Hi,
    I am trying to have a mutually dependent drop down lists in my page.
    This is what I am trying to do -
    Lets consider there are 3 drop down lists (Choice - Select Many). A simple example lists are - Country, State, County. Now users selects country from drop down, I need to get all the states for that country as the data for the "State" drop down list. Then user selects a state, I need to populate data for the "County" drop down list.
    I am trying to do this. I added a ValueChangeListener method in the backing bean and tried to add this on the "Select Many Choice" component. But the method is never fired. I tried to change few other properties like - "immediate", "Auto Submit". but method is not fired.The method in backing bean is as shown below -
    public void onRegionSelect(ValueChangeEvent event) {
        System.out.println("Value changed ==>> "+event.getNewValue().toString());
    Need some help on how to do this.
    JDev: Version 11.1.2.3
    Thanks.

    Hi,
    I am trying to have a mutually dependent drop down lists in my page.
    This is what I am trying to do -
    Lets consider there are 3 drop down lists (Choice - Select Many). A simple example lists are - Country, State, County. Now users selects country from drop down, I need to get all the states for that country as the data for the "State" drop down list. Then user selects a state, I need to populate data for the "County" drop down list.
    I am trying to do this. I added a ValueChangeListener method in the backing bean and tried to add this on the "Select Many Choice" component. But the method is never fired. I tried to change few other properties like - "immediate", "Auto Submit". but method is not fired.The method in backing bean is as shown below -
    public void onRegionSelect(ValueChangeEvent event) {
        System.out.println("Value changed ==>> "+event.getNewValue().toString());
    Need some help on how to do this.
    JDev: Version 11.1.2.3
    Thanks.

  • How to show "ALL" Values by default in Page Drop-Down Lists in Pivot Tables

    Hi Everyone,
    Iam stuck with 1 problem please can any 1 help me if u know the solution.
    Here is my problem:
    How to show "ALL" Values by default in Page Drop-Down Lists in Oracle BI Pivot Tables?
    For example, if you place Region in the pages area, a Region drop-down list allows the user to select a particular region, and see the data for only that region, rather than seeing all the Regions,But by default its not showing "ALL" option in the drop down list ,rather than doing that its showing result for only 1 region by default.
    And an other problem with this pages area is, if we palce the multiple attributes in the Pages area in the pivot table, the (Fields)result is showing in vertically, the attributes 1 by 1(Every attribute in a new line) ,rather than showing like that, is there any way to show the results in horizantally?(We want to have it as a seperate drop drown list for every field horizantally not as a concatenated list).

    Thanks Nikhil. But I am fetching the values from the LOVCache.java.
    I am using <af:selectManyChoice>. Is there any way I can use LOVCache.java value for selecting default values instead of hard coding?
    I mean to say can I write
    unselectedLabel="#{LOVCache.entityTypeSelectionList.anyValue}"
    where LOVCache.entityTypeSelectionList is used to populate the drop down box.
    Regards,
    Aseet

  • Is it possible to show first item in a Drop down list

    Is it possible to automatically display the first item in a drop down list ?
    The reason I ask is  ... I am generating pre-filled PDF forms using XML data files.
    Whenever there is a certain type of data I am populating a drop down list for the user to review.
    Currently, the user must click on the drop down to see if data is there regardless of whether there is no data at all or many data lines of data..
    I would like to make it clear to the user whether or not there is any data - right awa.y
    I have considered creating a display item next (like a check box or a text field ) next to the drop down and setting it to cindicate if there is data, etc -
    but i thougth that I would ask if the drop down could simply be set to automatically display the first item in the list (this is the preferred functionality)
    If this is not possible I can always create a check box and set it if there is any data as an  indicator for the user ..
    Thanks

    You can do this way..
    Place the code in Inititalize event with Java Script
    if(DropDownList1.rawValue == null)
        DropDownList1.selectedIndex = 0;
    You need to check if the Dropdown has a value selected from the previous save.. If not then set the selected item to 0th index. (which is 1st one in the dropdown values)..
    Thanks
    Srini

  • Using selected items from drop-down list in rest of page

    Hi,
    I hope I'm able to describe clearly what's the problem.
    So I'm implementing a form for the moment. It contains a drop-down list. The user has to select one item from it and as a result another drop-down list on the same page needs to be filled with a couple of options. I wanna do this without refreshing the page, cos else I have to retrieve all the values from boxes that were allready filled in. Is it possible?
    Greetings,
    Raf

    This cn be done with javascript. But you need to cache the data on first load of your jsp.
    regards

  • How to change the width of the auto complete drop down list?

    Hi,
    I implemented an autocomplete mechanism, using ICompletionSession and ICompletionSourceProvider. I have an issue with the size of the drop-down list opened when I use this autocomplete mechanism. The width of the autocomplete list remains the same, even
    if the strings displayed change. This is apparent especially when I hit "backspace" on the already typed string, while the drop down list is opened: the deletion of the last character allows for more completion strings to be used, but since the drop
    down width does not change, the longer strings appear cut.
    Is there a way to force the drop down list to recalculate its width?
    Yoel

    I don't think there's any way, even VS itself can't do that you know, and the interfaces don't have such kind of events or properties.

Maybe you are looking for

  • Upgrade Memory on 2009 4 core Mac Pro - Max? Non-ECC?

    I've been doing research on what I can do to upgrade my RAM on my Mac Pro and I think I did something I wasn't supposed to do a while back. During my last upgrade adventure, I apparently purchased and installed a 2GB stick of Non-ECC (PC3-8500 1066MH

  • Firefox 3.6.12 is using lots of CPU when shutting down, and doesn't ever die

    It may have something to do with changing settings, but on the closing phase of restarting Firefox 3.6.12, one of my two CPUs get's used, CPU running at about 50% to 60%. It doesn't seem to stop until I kill it from task manager. I haven't been able

  • Types of external hard drives to buy.

    Hi, can anyone provide me with some advice on purchasing external hard drives. What I'm looking for is a high capacity drive around 1-2 TB that will allow two users to access the same files at once. In other words mount on two seperate computers at o

  • Java App connection to an Oracle Database through Oracle Stored Procedure

    My team's access to its Databases (Oracle only) is restricted to access through Oracle Stored Procedures that are part of the Oracle Database. So, in my Java App I need to call the Stored Procedure that will give me the access to the table that I nee

  • DB2 / Red Hat 5 : Backup to External Storage Failed

    Dear gurus, I've SAP ECC 6 running on DB2 9.7 FP2, RHEL 5.0 We can backup to internal disk, but when configuring backup to external storage (Maxtor Shared Storage II), there's this error. I mount the external storage using cifs, with correct owner an