SCAC Field Should have Drop Down Values and ASN should have Storage locatio

Hi ,
We have a requirement while creating ASN in which we have to add SCAC ID  in the SCAC field ( Carrier)  this SCAC ID comes in Shipping details  - We want to have drop down values in this field and also if we dont enter value in this field An Error Message should come like " Maintain SCAC code.
And also the PO's coming from ECC are not carrying Storage location information - Is there a specific config / enhancement to be done.
And in ASN can we have Storage location ?
Thanks,
Mahesh

Hi Mahesh
Regarding adding fields to UI
Refer below links
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0b0e544-7a06-2d10-539d-f8648358ba67?quicklink=index&overridelayout=true
http://wiki.sdn.sap.com/wiki/display/SCM/SAPSupplyNetworkCollaboration%28SAP+SNC%29
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/908c1e69-0a01-2d10-e7a6-98ca00f19aa6?quicklink=index&overridelayout=true
Not sure how to maintain it as a drop down, a developer could help you easily with that.
Regarding Storage location from PO ECC.
If you are using idocs, the standard SAP xml conversion will not be able to transfer this(if you download standard content)
You can find the field in your IDOC ORDERS05, Data records-Segement-E1EDP01FIELDLGORD
In order to transfer this, you need to rewrite the xml format in integration builder of XI/PI and then add some UI fields in Webui
to show.
But xml PurchaseOrderERPReplenishmentOrderCollaborationNotification as of SAP ECC EHP4 can carry this information in its payload document(SXI_MONITOR---INBOUND MESSAGE ---PAYLOADS) Under the node INVENTORY MANAGED LOCATION
Not sure where this field is mapped to .........
I will let you know once i find........Mean while you can ask any developer who worked on webdynpro .
Yes we can have this field once we find where it is mapping, if you are using idocs then even the XML has to be build in PI
accordingly.
Best Regards
Vinod

Similar Messages

  • 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

  • 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

  • Drop down values in Adobe Forms vanishes upon Check and Send in HRAS

    Hello
    The drop down values in Adobe Forms vanishes upon Check and Send while initiating the process.
    I also get the error , u2018 The Entered Value is not on the List of Valid Valuesu2019   when I select the values again and try to SUBMIT.
    We are in EHP4u2026 and I am seeing many Notes has been released to address these issues in EHP3 itself..
    Request your help and supportu2026.
    Thanks
    Meena Venkatesan

    Hello
    Thanks for the swift response.
    We applied the Note 1413209 and 1403266. The fix didnu2019t work.
    I noticed the SAP Note 1403266 mentions a prerequisite Note 1346443 which is for SP4.
    We are currently in SP5 and our system mentions Note 1346443 as u2018Cannot be Implemented. u2018
    Please advise.

  • How to populate Second drop down based on the first drop down value

    Hi Experts,
    i have a HTML BSP page. with 2 drop down with SELECT and OPTION tags. i need to populate the second drop down based on the first drop down value.
    i tried HTMLB script they work good as stand alone when i try to embed the HTMLB with HTML it does not work.
    Please can you give me a solution only with ABAP script and HTML.
    please clearly let me know on what event i should implement it. sample code is really appreciated .
    With regards,
    Chella

    You can have event handler for first drop down . Then populate the data for 2nd field when the event triggers on first field.

  • Drop down Values in Adobe form

    Dear All,
         Greetings.
         I am using the Adobe interactive form for E Recruitement(copying the standard and changing it as per the requirement). When i am using the Drop down value for one of the field. Instead of the drop down its showing as a POP-UP with all the possible values.
    I am not able to predict what the problem is. I need to have a drop down, instead of the pop up.
    Please help me in solving the issue.
    Thanks
    Ram M

    Hi Ram,
    Please use a Enumerated Drop down list ffrom the library, seems currently you have Extended Value selctor in your form.
    This will hopefully resolve the issue.
    Regards,
    Arafat

  • Populate Drop down values to Adobe forms

    Hello,
    I am in the process of developing the HCM forms for PCR's. This is using old technology. How can I pass values to the Adobe forms based on certain condition selected in previous screen. For eg. Based on Position selected, I should have a certain value in Drop down pre-selected on the next screen and when the user does a drop down a list of the values should be listed. Where should do the coding for the subsequent drop down values?
    Appropriate points rewarded.
    Prasad

    Here a change in the question below. Based on Position selected, I should have a certain value in Drop down pre-selected on the next screen from table IT1008
    and when job is selected drop down from table T500P should be listed. Does this need to be handled in badi or in the Adove form scripting?
    Thanks
    Prasad

  • Dynamic change of drop down values

    hi gurus,
    I got a peculiar senario.
    i have three fields on modlue pool screen which are having drop downs.
    based on the selected value in the first drop down second drop down values has to display.
    suppose.
    first drop down displays the bellow values.
    technical documents.
    type test.
    if techincal documents is selected then display the bellow values.
    test1
    test2
    test3
    if type test is selected then display the bellow values.
    test4
    test5
    i got the above logic.
    one  problem is what ever the value i am selecting is reflecting at the end of drop down .
    second problem is bellow one.
    now suppose that 'type test' is selected in first drop down and 'test5' is selcted in the second drop down.
    if suppose again first dorp down selection is changed to 'technical documents' in the second drop down i am getting the bellow values.
    test1
    test2
    test3
    test5
    already existing value on the screen is reflecting at the end.
    but i have to get
    test1
    test2
    test3 only
    hope i am clear .
    kindly sugest the solution.
    thanks in advance ,
    padmaja.

    Assuming your problem is related to custom/z development, i guess abaper might be able to help. In the program clear the internal tables before displaying the values.
    rgds

  • Drop Down value missing in MSA

    Hi Experts,
        I am not getting dropdown values(combo values)in fields for Transaction Type OPPORTUNITY in Mobile Sales Application Client. Does any know as what could be the problem as we we create and replicate opportunity from CRM enterprise.
       Also while ceating Visit Planning in MSA we are not getting drop down values in field STATUS
        Please help  &  Thanks in Advance
    Regards,
    Rahul
    Message was edited by: Rahul Jagani
    Message was edited by: Rahul Jagani

    Hi Rahul,
    You probably haven't downloaded all the customising to your mobile client.  You need to assign the customising subscriptions to your site after you have done an initial load to the CDB.
    Suggest following the best practice guides.
    Cheers
    Andrew

  • How to have drop down menu in which we cant continue until selection is made

    Hi All,
    I have a case in which I have 4 drop down menu, and a continue button, I want to make sure that a user cant continue until selection is been made on all the four or atleast from some of the drop down menu. how can I do that.
    Solved!
    Go to Solution.
    Attachments:
    selection.vi ‏20 KB

    I believe what Norbert was suggesting is something like this:
    With this code the "Continue button will be disabled and greyed untill a value change event has been registered on each of the four I32 controls.  Note also that its always OK to Cancel (and the windows X is active so you won't anger your users)  The caller should decide what to do if Canceled? is TRUE.
    Modify as desired!  the Attachment is saved back to 2012
    You can safely delete the case structure.... 
    Its a hold over from my VIT 
    Jeff
    Attachments:
    Simple UI (Events) 1.vi.vi ‏31 KB

  • 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.

  • Crystal report Chose from List or drop down value in parameter from UDT

    Hi Experts,
    I had face a issue while creating a report for my client in crystal report , I had create a report and in the parameter field I want to select the value from the chose from list or drop down value from the User define table.
    In parameter had written field as : Code@Select * from dbo. [@UDT] ;  but in the report filled I am not able to select the value.
    Please Help me ! Thanks in Advance. :

    HI
    Welcome to the Forum...
    You cannot put all the values in a single parameter field so you need to select each field for each parameter...
    Better you post it in this link for more reponses:
    Reporting and Printing

  • Black dots in drop down menus and in previews.

    I just upgraded my Mac to 10.9.3 and i have these weird tiny little dots appearing in my drop down menus and when I open an image in Previews. Actually, some images just look crazy in Previews with giant squares all over them. Any idea how to fix this? I have this same operating system on an older computer at work w/out this problem.
    OS X 10.9.3, 2.8 GHz Intel Core i5

    Is it only Preview that you are seeing this problem? If no, then it could be a hardware issue. Make a Genius appointment. Troubleshooting and analysis are a free service at the Genius Bar.
    http://www.apple.com/retail/geniusbar/
    I am already running 10.9.3 so am not sure what good that would do
    Running the combo updater often fixes odd issues. It's easy to do and certainly don't hurt.
    MORE INFO ON WHY RUNNING COMBO FIXES ISSUES
    Apple updates available from the Software Update application are incremental updates. Delta updates are also incremental updates and are available from Apple Downloads (software updates are generally smaller than delta updates). The Combo updates contain all incremental updates and will update files that could have become corrupted.
    Combo updaters will install on the same version as they're applying--no need to roll back or do a clean install. So if you think you've got a borked 10.9.3 install from a regular update, just run the 10.9.3 Combo Updater on that system.
    "Delta" updaters can only take you from one version to the next. For example: 10.9.1 to 10.9.2. If somehow the 10.9.2 is missing something it should have, and that something isn't changed between 10.9.1 and 10.9.2 it will still be stale after the delta update.

  • WebPart drop down values working fine on PostBack in Dev. Environment (Single Machine) not in Farm

    We have three drop downs (ddlRotation, ddlOnCallType and ddlHospital) in our webpart. All values are being populated dynamically. One from list (ddlHospital) and other from tool part properties. For dropdown populated from list, we are storing values  in
    View State.
    WebPart is working fine in development environment (single  machine) while on production ( 1 front end, 1 index and 1 db server), drop down values disappear after post back. Below is the code.
    protected void Page_Load(object sender, EventArgs e)
    try
    if (!Page.IsPostBack)
    LoadData();
    if (!string.IsNullOrEmpty(webPart._rotationDetail))
    ddlRotation.Items.Add(new ListItem("All", "0"));
    int i = 1;
    string[] strRotationDetail = webPart._rotationDetail.Split(':');
    foreach (string str in strRotationDetail)
    ddlRotation.Items.Add(new ListItem(str, i.ToString()));
    i++;
    if (!string.IsNullOrEmpty(webPart._onCallTypes))
    ddlOnCallType.Items.Add(new ListItem("All", "0"));
    int j = 1;
    string[] strOnCallTypes = webPart._onCallTypes.Split(':');
    foreach (string str in strOnCallTypes)
    ddlOnCallType.Items.Add(new ListItem(str, j.ToString()));
    j++;
    catch (Exception ex)
    private void LoadData()
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite spSite = new SPSite("SITE_URL"))
    using (SPWeb spWeb = spSite.OpenWeb())
    SPList oList = spWeb.Lists[webPart.destListName];
    SPListItemCollection setuplistItems = oList.Items;
    if (setuplistItems != null && setuplistItems.Count > 0)
    DataTable dtSetupData = setuplistItems.GetDataTable();
    if (ViewState["SetupData"] != null)
    ViewState.Remove("SetupData");
    ViewState.Add("SetupData", dtSetupData);
    else
    ViewState.Add("SetupData", dtSetupData);
    LoadHospitalCombo();
    dateControl.SelectedDate = DateTime.Now;
    else
    // some error message
    private void LoadHospitalCombo()
    if (ViewState["SetupData"] != null)
    DataTable dt = (DataTable)ViewState["SetupData"];
    DataView dv = dt.DefaultView;
    ddlHospital.Items.Clear();
    ddlHospital.DataTextField = "TITLE";
    ddlHospital.DataValueField = "TITLE";
    ddlHospital.DataSource = dv.ToTable(true, "TITLE");
    ddlHospital.DataBind();
    ddlHospital.Items.Insert(0, "All");
    Any help?
    http://farhanfaiz.wordpress.com

    Running your code in try/catch and doing nothing on exception, is not a good idea. Please try to put logging in your code as I believe your code is throwing exception. It's difficult to say seeing such a code what's wrong. Maybe the list doesn't exist or
    exists with different name/title, or viewstate is disabled or webpart properties are not populated... there's so many possibilities. Also if possible refactor your code as shown below:
    //Your Code, you are loading all items from database and then counting it
    SPListItemCollection setuplistItems = oList.Items;
    if (setuplistItems != null && setuplistItems.Count > 0)
    //Refactored Code
    if (oList.ItemCount > 0)
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

Maybe you are looking for

  • Sign change in report

    Hi In a report I have a key figure (Total spend) “Amount”, my requirement is irrespective of the sign (+ve /-ve) of the value, I want to display all the vales as +ve. How can I achieve this? Please advice. Thanks a lot Sheetal In The querythe field(T

  • Ibus doesn't work for skype 4.0.0.8

    hello everyone, I'm new to Arch. I just installed skype 4.0.0.8 with pacman -S skype although had a little difficulty with the sound, I finally get it to work properly. Now the only problem is I can't input Chinese with ibus. I did a lot of search on

  • Photoshop behaving weirdly (help please!)

    Photoshop noob here!  Any help would be appreciated.  The more I use Photoshop cs6 (64 bit) on my computer the more weird behavior starts to occur.  The first time I installed it started out fine like usual.  Then out of the blue opacity started beha

  • Photo Booth quits Unexpectedly when trying to access pages 3 or 4 of effect

    So I have had this problem for a few months. Originally, Photo Booth wouldn't even open up until I removed all the photos and movies taken and placed them into a separate file folder. My daughter likes to use the program for little video performances

  • Epson Stylus CX9400 - Cannot print in black ink only

    I cannot print in black ink only on my CX9400 printer.  My OS is Windows 7.  I've never had this problem before, and it only happens with pdf documents.  Please adivse me how to correct this problem.  Thank you.