Drop down values doesnt get populated in the standard PCRs

Dear SDN Community,
  I am using Internal Transfer, Promotion and Transfer PCRs. In all the standard PCRs the dropdowns values are not getting populated. Can you please advice me here.
Thanks!
Surya.

The portal patch upgrade has resolved this issue.

Similar Messages

  • Drop down vales not getting populated all the records

    Hi,
    I have the scenario. Drop down has the values. But it is getting populated for only one record. Second record drop down is there, but values are not there.It is blank from second record.
    Thanks
    GJ

    Hi ,
    Sorry for the confusion.
    I am working on xml schema offline scenario. I have 10 line items. It has one drop down list. I have populated the value in drop down. But in the first item drop down list, the first value is appearing as deafult one. From the second line item onwards, it is not appearing as default value. When you dropped down on the list, I can see all the values. I want all the drop down list, the first value should be appear as default value.
    Thanks
    GJ

  • Values not getting populated in the o/p

    Hi,
    I have a requirement,where in which I have to add MRP Controller(marc-dispo) and production scheduler(marc-fevor) fields in the selection screen and the same should be added in the o/p.These fields are not getting populated in the o/p,even if I give some values for these fields in the selection-screen.What would be the reason for this?
    Regards,
    Hema

    Dear Hema,
    Could you please tell me how many internal tables you are using to store the data for display.
    I observerd that you have lt_stock and lt_mat2 declared in the part of the program
    >DATA: lv_stock TYPE lty_stock.
    >DATA: ltmat2 TYPE TABLE OF lty_mat.
    you have displayed above, however you are also using ls_stock and lv_stock .
    >IF p_ztotal = ' '. "line
    >WRITE 18 ls_stock-matnr.
    >WRITE 38 lv_stock-strgr.
    >
    >ELSEIF ztotal = 'S'.                             "subtotal
        >WRITE: 15 ls_stock-nrmit.
        >WRITE 32 lv_stock-dispo.                    
        >WRITE 43 lv_stock-fevor.                      
      >ELSE.                                            "total
        >WRITE: 15 'TOTAL'(016), ls_stock-prgrp.
    >
      >ENDIF.
    Are those for displaying some other information?
    Also the problem of display you are facing can also be because there are no records to be displayed which satisfies the selection criteria.
    Best Regards,
    Rajesh.
    Please reward points if found helpful.

  • Values not getting populated in the SMOPCCAPRO

    Hi,
    We had added a new field to CPGProduct in component CPGOE_ABLOCKS. But the extension field was not included to the BOL structure automatically.
    So ,we had used the SAP note 1472567 to add the include structure INCL_EEW_MKTPL_PRD to structure CRMS_MKTPL_CPG_PROD which inturn would rectify our BOL  structure CRMS_MKTPL_IB_CPG_PROD.
    The field which we had added using AET was added in tables CRMD_MKTPL_PROD and SMOPCCAPRO. But we are facing an issue that the values are not getting populated in the SMOPCCAPRO table on save.The values are gettign populated in the CRM table.
    Do we need to implement any other SAP note on the midleware side too to rectify this issue as i infer some interface structure would be missing this field which results in the truncation of value from being passed to the CDB table . Any pointers in this regard would be helpful.
    Thanks
    Swapna.

    Hi Swapna,
    as the CDB table has been extended with the new field I assume that you have enabled the mobile flag for the enhancement.
    Then it will also extend the mobile BDOC and the data should be transfered automatically.
    If this does not happen there's an error somewhere. Either the middleware is not set up properly or the mapping routine does not transfer the fields properly.
    I recommend to raise an OSS message for this.
    Best regards
    Matthias

  • Drop down values are missing while using the function module KCD_EXCEL_OLE_TO_INT_CONVERT

    Hi all,
    I am using the function module "KCD_EXCEL_OLE_TO_INT_CONVERT"  to upload the excel template to an internal table but i am not getting the complete excel data into the table the fields which contains the drop down list values those values are not coming in to the table.
    Is there any other function module which can read even the drop down list values? can any one please provide me the solution.
    Thanks in advance
    ** FYI...i am using the below code:
    * upload excel file to a generic table
       CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
         EXPORTING
           filename                = l_filename
           i_begin_col             = 1
           i_begin_row             = 1
           i_end_col               = 150
           i_end_row               = 65000
         TABLES
           intern                  = lt_intern
         EXCEPTIONS
           inconsistent_parameters = 1
           upload_ole              = 2
           OTHERS                  = 3.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
    Thanks,
    Koushik

    Hi all,
    I am using the function module "KCD_EXCEL_OLE_TO_INT_CONVERT"  to upload the excel template to an internal table but i am not getting the complete excel data into the table the fields which contains the drop down list values those values are not coming in to the table.
    Is there any other function module which can read even the drop down list values? can any one please provide me the solution.
    Thanks in advance
    ** FYI...i am using the below code:
    * upload excel file to a generic table
       CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
         EXPORTING
           filename                = l_filename
           i_begin_col             = 1
           i_begin_row             = 1
           i_end_col               = 150
           i_end_row               = 65000
         TABLES
           intern                  = lt_intern
         EXCEPTIONS
           inconsistent_parameters = 1
           upload_ole              = 2
           OTHERS                  = 3.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
    Thanks,
    Koushik

  • Drop Down List not getting populated

    Dear All,
    I have developed a form in SFP which containes a drop down list.The drop down list is to be populated by an internal table field.
    Whenever I am executing the form i can see only the first item in the drop down listand nothing else.
    While debugging i could see the almost 15 entries in the internal table.
    I have mapped a field of this internal table to the drop down list.I am unable to figure out the problem....do let me know which type of drop down list should i use for this scenario....I even tried with java script...but nothing works for me...do let me know??
    Waiting for t
    Regards,
    Geet

    hi,
    i guess you have bound the field but not the list elements of the field.
    the content of the field (as result of the selection from the drop down list box) can be bound to a variable.
    But if you want to display your internal table as entries in your drop down list box you have to do some dynamic data binding of the list elements.
    to be able to do this, you first have to activate dynamic data binding in general. Use the way i proposed (--> extras from the toolbar!, options, data binding, dynamic). then the word "list elements" in the object palette of your dropdown list box will be green and you will be able to do some dynami data binding!
    i recommend you this one:
    --> http://www.adobe.com/devnet/livecycle/articles/strategies_creating_forms_lc_designer8/strategies_for_creating_form_designs_using_designer8.pdf
    br
    norbert

  • When I go to a website and then to the drop down I  automatically get routed to the App Store or to other websites other than the one I selected

    When I go to a website from Safari I am routed to the App Store or to another website.  I hit my home button and then it takes me back to the website I selected.  It is almost like a virus. Help!

    Simple really. The first 3 articles have steps in them, but not in this order.
    #First, with Firefox closed, remove the toolbars from Windows ''Start > Settings > Control Panel > Add or Remove Programs''. After the window populates, look for the Toolbars; if there, click on them and click on the button to the right of it that says "Remove". Then restart your system ''Start > Shut down > Restart''
    #*Article --> http://kb.mozillazine.org/Uninstalling_toolbars#Uninstalling_via_Windows_Control_Panel
    #Second, start Firefox and check in Firefox Add-ons: '''''Add-ons > Extensions'''''. Look for Yahoo Toolbar or Babylon and try to remove by clicking "Remove" or "Disable".
    #*Article --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons <u>and</u> http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    #Restart Firefox by exiting (''Firefox button > Exit'' or ''File > Exit''), wait a few seconds (10-30), then click the Firefox desktop icon to start Firefox and test to see if the problem is resolved.
    The last 3 articles are for other steps to take if the above does not work to solve your problem.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Cube values not getting populated in the report

    Hi,
    I have done the selective deletion of Purchase orders and done the repair load, the set of records are there in the cube but unable to see in the  report.. the records in the cube satisfies the selection criteria also.
    expecting the early response,
    Points will be rewarded for the any information and solution also if any body face the same problem pls share the information.
    regards,
    vishali.

    Hi,
    i have already activated the cube and that repair full request is available for reporting that icon has come in the cube and if it is reg. aggregates there are not aggregates present so .... what might be the problem pls let me know....
    regards,
    vishali.

  • Drop down values for table in a view not getting populated dynamically

    Hi Experts,
    The problem which i am facing is as follows
    In an existing web dynpro component , i already have a view and it consists of table which has 3 columns.All the three columns are non editable
    MATERIAL     MAT_DESC     MAT_DEL_FLAG
    ABC          
    EFG          
    HIJ
    Now i need to add 2 more columns after the MAT_DEL_FLAG.These two PLANt and STORAGE LOCATION columns must have drop down values
    The context refers to a standard Database ZTABLE to which these two fields are added.
    MATERIAL     MAT_DESC     MAT_DEL_FLAG     PLANT     STORAGE_LOCATION
    ABC                    
    EFG                    
    HIJ                    
    The Plant column must have the drop down values based on Material .
    If we select some value for Plant , then based on the value of plant the storage location drop down values must be populated.
    So as per this logic , the drop down values for plant for each row must be different.
    Please let me know how to achieve this.
    This is a normal table and not an ALV table.
    Also please let me know whether the drop down field must be drop down by key or drop down by index.
    This is very urgent.
    Thanks in advance
    Sindhu

    Refreshing things again for you -
    1. As I have already pointed, create 2 context attributes for VALUESETS for both plant and St.loc.
    2. Create dropdown by indexes for both of them, assign valusets to respective attributes using node information.
    3. Go to the plant dropdown and create the action for it ONSELECT event - when you chagne the dropdown of plant then populate the respective storage loc.
    4.Now, As you are selecting a row (leadselect) you have populated the plant and loc details....write the code for lead selection event of the table
    You will get the lead selection index right using node interface (IF_WD_CONTEXT_NODE)
    LOOP AT ITAB INTO WA_ITAB.
    if sy-tabix eq lv_lead_index.
    clear wa_valuset.
    wa_valueset-key = 'X'.   "plant
    wa_valueset-value = 'X'.
    append wa_valueset to it_valueset1.
    * popultae the storage location valuset based on the plant selected (bydefault it is 1 right in dropdown)
    clear wa_valuset.
    wa_valueset-key = 'XX'.   "storage loc
    wa_valueset-value = 'XY'.
    append wa_valueset to it_valueset2.
    else.
    * Fill the valusets for all other rows as different or as per your requirement.
    endif.
    wa_itab-valuset1 = lt_valueset1.
    wa_itab-valuset2 = lt_valueset2.
    modify itab from wa_itab transporting valuset1 valuset2.
    clear wa_itab.
    ENDLOOP.
    lo_node->bind_table ( it_tab).
    Now for that Row, if a plant value is changed, respective storgae loc has to be filled right...then in that ONSELECT of plnat drodpwon again you need to write a piece of code...using the same code with a little modifications.
    Hope this is clear.
    Check this article on the same - but here ALV is used...the concept is same  use it for your table -
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0cbdde3-fe58-2c10-fcbc-8db18e693877?QuickLink=index&overridelayout=true
    the above code you hvae pasted  - i think it fills only for the 1st time....
    Regards,
    Lekha.
    Edited by: Lekha on Dec 20, 2011 12:00 PM

  • Retrieving the drop down value used in wdr_select_options for default

    Hello Experts,
    I populated drop down using the method add_parameter_field by using WDR_SELECT_OPTIONS component.
    Now my requirement is I need to default the value in some other parameter field based on drop down selection value.But the problem is WDDOMODIFY method is not triggreing while selecting the value from this dropdown for defaulting the value and even there is no method or option in the interface if_wd_select_options for creating an action while selecting the drop down like on slect in our manually creation drop down.
    Please let me know if there is any solution for this.
    Thanks and Regards,
    Venkat

    Hi venkatesh,
                    The eventhandlet ONENTER of WDR_SELECT_OPTIONS wont work for the drop down and also
                    there is no ONSELECT event of drop down in select options.
                    So i think there must be some kind of button action.
                    As you told you need to default the value of selection screen field based on drop down selection
                    why dont you remove that field from selection screen as you can however use the value later
                    while executing depending on drop down value.

  • Reading the drop down value in interactive adobe forms in WDJ

    Hi,
    I have a scenario like this:
    Drop down menu with values being populated from model . when i select the value from drop down and update the backend with that value, it is not done. It always takes the same value ( first one in the drop down list) and fails to take the selected value.
    could anybody throw some light as how to deal with the drop down in adobe forms in WebDynpro Java?
    Are there any specific settings for these?
    I have taken the drop down menu from WebDynpro Native library.
    Kind Regards,
    Charan.

    Hi Charan,
    Did u try to populate the data into the dropdown with the help of Simple types.
    I faced the same issue, that got resolved when i binded the dropdown with Simple types that were populated.
    Hope this helps.
    Thanks,
    Amita

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • HCM F&P - How to set the field as Required based on drop down values

    Hi Experts,
    I have a requirement to set the Date field as mandatory when a particular value is selected in drop down list. I have already tried with MessageBox though it displays the error message but process moves further i.e. on clicking Check & Send button it throws an error message but still it moves further and i can see only Send button. Ideally it should halt there itself.
    Thanks & Regards,
    Jitesh Talreja

    Thanks for your valuable inputs
    Chintan
    I have already tried this. It only highlight the field with the red border but still allow to move further.
    Mukesh
    Yes, we can definately control this from the backend but that would be the last option i should execute. Ideally, this is something to be controlled in front end itself
    Poornima
    By setting the field attrbiute Required will set the field mandatory as a whole irrespective of drop down values or any other UI element.
    Regards,
    Jitesh Talreja

  • I recently updated to the newest version of Flash (17.0.0.134) and I have a MacBook Air, running OSX. Ever since the update I can no longer select drop down menus or get Netflix to run properly. Has anyone else had this issue/know how to resolve it?

    I recently updated to the newest version of Flash (17.0.0.134) and I have a MacBook Air, running OS X and I have Safari version 8.0.4.  Ever since the update I can no longer select drop down menus or get Netflix to run properly. Has anyone else had this issue/know how to resolve it?

    1. System Preferences > Flash Player > Advanced > Delete All
        Press “Delete All” button under “Browsing Data and Settings”.
    2. Install Adobe Flash Player.
        System Preferences > Flash Player > Updates
        Press the “Check Now” button.
        http://get.adobe.com/flashplayer/
        Download it and quit Safari from Safari menu in the menu bar.
        Follow the prompts to install Adobe Flash Player.

  • Over ride the drop-down value?

    Hello,
    I am developing an VISITOR Adobe Interactive Form, i have Designer 8.1 and Reader 9.0 in my Windows 7 Laptop. When i checked the menu EDIT-->form properties --> Compatability, its Adobe XML form File (XDP)
    When i opened this VISITOR interactive form in a browser, right clicking and checked form PROPERTIES, then i saw the "PDF Version: 1.6 (Acrobat 7.x)"
    I have a bunch of drop-downs in my interactive form, done by dragging & dropiing the 'Drop-down list' object, at the end i binded it with some data source, working fine, say its COUNTRY list.
    As soon as use opened the form, he saw the 'USA' prepopulated in the drop-down field, fine.
    User dropped down the entries, he saw a couple, like USA, Canada, UK, Spain, fine.
    But, now user want to enter / override this USA entry with his own value, like FRANCE, but, my form is not allowing, its behaving like a 'readOnly' field!
    Pls. let me know how to over ride a entry of drop-down values, as per user wanting value?

    Hello Srinivas,
    You can overide the entry of drop-down list by:
    selecting the "Allow Custom Text Entry" box of the field tab of the object palette
    of that drop-down list.
    Thanks,
    Debadas.

Maybe you are looking for

  • Transfer Phone Numbers Between Lines on Same Account

    Hello, I'm on a family plan currently with 5 lines. One of the lines is no longer used, but it's contract doesn't expire until 2014. We have another line (on the same account) that is month to month. We'd like to cancel the month to month line, but k

  • Apostrophes trigger weird backspace behavior in Mail

    I upgraded to Mavericks a couple of days ago, and since then I've had the weirdest and most annoying problem in my Mail app (and ONLY in my Mail app): If I type a contraction ending in "re", (example: we're, they're), the spacebar sends the cursor ba

  • LARGE POOL의 개념 및 사용 방법

    제품 : ORACLE SERVER 작성날짜 : 2004-05-03 LARGE POOL의 개념 및 사용 방법 1. 개념 및 사용 목적 Oracle8.0에서 large pool이라는 새로운 SGA 내의 구성이 도입되었다. large pool 이란 shared pool과 유사하나 실제 shared pool 내의 일부분을 사용하는 것은 아니고 SGA 내에 직접 할당하며, 이 pool을 사용할 수 있는 작업들을 제한하고 있다. Oracle8에서 larg

  • UWC gui bug with 12/24 hour clock?

    Hi If you choose a 24 hour clock in UWC, all mail and calendar events looks correct. But all tasks still use 12 hour clock with AM/PM. Is this a bug? We have all products from JES2005Q1 + the xx540-10 uwc patch. Is it a known bug or shall be logg a c

  • Time Machine error message "Unable to complete backup....."

    I just purchased Time Capsule and attempted to do my initial backup. I had to stop during the middle of the process. When I returned to resume the backup I get the following error message: "Unable to create backup. An error occurred creating the back