Change shipto at item level

HI,
We have created a order in  CRM  and have s able to change the shipt to party.
ship to party at header and item different,but we are getting error and not ab.le change ship toparty,is there any way we can change shitparty.
Your advice.

hello ,
Please check if any 'Mandatory' setting in ECC for partner Det for the transaction type
as well as for partner det. N, as it should not be necessary to
maintain this setting.
You can remove this mandatory setting for ship to and recheck.
rgds,
deepa

Similar Messages

  • Enable change logs for item level of Sales Document

    Hi,
    On transaction VA02, additional screen field (Booking Date) is added (& consequently 2 appends with date field in the tables VBAK & VBAP).
    When this date is changed in the header, the corresponding dates are changed in the item level as well.
    However, the change documents are created only for table VBAK (though item data is updated in VBAP also).
    When the date is changed at the item level, the change logs are created for the corresponding field in table VBAP.
    The data element has 'Change Document' checked.
    How can I activate the change to be logged for the item level (VBAP), when the date is changed at header level (VBAK)?

    Hi Nidhi,
    Maybe set a breakpoint in include MV45AF0C_CHANGE_DOCUMENT_CREAT
    Then check in UPDATE debug mode the value of upd_vbap and the contents of xvbap which are passed on to function VERKBELEG_WRITE_DOCUMENT .
    This function creates the change documents based on the data changes.
    I would have thought that since the date values are changed at item level as well when you only change it at the header, they should get a change document created automatically, since the dates must be in the XVBAP table (as their value is changed at the DB).
    So I would compare the various internal tables for both scenarios (header change,  item change) to determine their differences.
    After this use one of the user-exits to populate the internal tables for the header scenario based on the values of the item scenario. I would feel this to be a last resort though, since something appears not to be working correctly (I think).
    Hope this makes sense,
    Robert

  • Partner Function Address change at line item level - Item Partners checkbox

    Hi guru, we have a requirement that we need to change the address for partner function at line item level without changing the partner number. Currently the ship-to partner function address is automatically coming from the header although the number is modifiable but not the address (when double click into the partner number, the pop-up is grayed out). It is probably because the Item partner check box for the shipto partner is not checked (field name: SD_PARTNER_POSFLAG). However that field is not modifiable in VA02 either.
    If the shipto partner number is overwritten, then the item partner check-box is automatically checked and allows address chanage. Is there a way in the configuration that can default the 'item partners' checkbox for certain partner so the address can be changed without the need to overwrite the account?
    Any advice is appreciated.
    Thank you.

    If the item level ship-to party is derived from header partner function, but you want to change the address at item screen rather than header level.  On item screen, enter the same function, the same number again in a new line, "item partner SD_PARTNER_POSFLAG" is then ticked. Then proceed to the address change.
    No need to do modification.

  • Change Partners at item level for a LUMF

    Hi
    does anyone know how i can change the item partner address on a material that has an item cat grp of LUMF, i can chage the sub items but not this one?
    Regards
    Steve

    Hi Steve,
    The item category (for example TANN) must be marked as "business data" in customizing, to allow different partners at item level (and also different VBKD business data at item level).
    Therefore please check the customizing of the item category determined by the LUMF item category group.
    Best Regards,
    Franck Lumpe
    Freelance SAP Logistics Consultant

  • How to capture the product change on the item level in CRM GUI.

    Dear All:
    There is a line item in the sales order. Now I change the product of the line item. I want to capture the change in CRM GUI.
    PS:
    There is a reference thread, in which I know we can capture the change in WebUI with the component T115IT_SLSO.
    Can the old product be captured after I changed the product in order item?
    But I want to know how to capture the change in GUI. Anybody can help me? Thanks in advance.

    Hi,
    when you create an item in GUI tcode CRMD_ORDER, badi CRM_ORDERADM_I_BADI will be triggered.
    Method CRM_ORDERADM_I_PRODUCT_DETERM will have the Header and item guid and newly entered product in parameter IV_ORDERED_PRODUCT.
    Regards,
    Arun

  • HTML DB Change position of item level

    I want to position the lebel of the item on the top of the field like this
    My_Name Phone
    I have been play with the Lebel Horizon/Vertical Alignment of the item but it did work very well. Why?

    I want to position the lebel of the item on the top
    of the field like this
    My_Name Phone
    I have been play with the Lebel Horizon/Vertical
    Alignment of the item but it did work very well. Why?Use the "Above" label position setting on the item.
    Earl

  • Urgent: Change custom conditions on item level

    Hi experts,
    could you please tell me how you resolve this issue, its very urgent? I´m facing the promblem that my condition type doesn´t get changed! I want only to change KBETR at item level. After CRM_ORDER_SAVE is called I can see, that order got saved, but nothing happens
    Please help me out! I think there is not a lot which has to be change. Here is my Coding:
    parameters: lv_head type crmt_object_guid default '...'.
    parameters: lv_item type crmt_object_guid default '...'.
    parameters: lv_kbetr type prct_cond_rate default '12'.
    insert lv_head into table lt_guid.
    insert lv_item into table lt_item.
    call function 'CRM_ORDER_READ'
       exporting
         it_header_guid                    = lt_guid
         it_item_guid                      = lt_item
       importing
         et_pridoc                         = lt_pridoc
         et_pricing_i                      = lt_pricing_i
    * CHANGING
    *   CV_LOG_HANDLE                     =
      exceptions
        document_not_found                = 1
        error_occurred                    = 2
        document_locked                   = 3
        no_change_authority               = 4
        no_display_authority              = 5
        no_change_allowed                 = 6
        others                            = 7.
    if sy-subrc <> 0 and lt_pridoc is not initial.
       write: / 'ERROR'.
       exit.
    endif.
    read table lt_pridoc index 1 into ls_pridoc.
    if sy-subrc <> 0.
       write: / 'ERROR'.
       exit.
    endif.
    read table ls_pridoc-pric_cond into ls_cond with key kschl = 'Z002'.
    if sy-subrc <> 0.
       write: / 'ERROR'.
       exit.
    endif.
    ls_input-ref_guid   = lv_item.
    ls_input-ref_kind   = 'B'.
    ls_input-objectname = 'PRIDOC'.
    ls_input_fn-fieldname = 'WAERS'.
    insert ls_input_fn into table ls_input-field_names.
    ls_input_fn-fieldname = 'KBETR'.
    insert ls_input_fn into table ls_input-field_names.
    *ls_input_fn-fieldname = 'ACTIVATE'.
    *insert ls_input_fn into table ls_input-field_names.
    insert ls_input into table lt_input.
    ls_pricom-ref_guid   = lv_head.
    ls_pricom-ref_kind   = 'B'.
    ls_pricom-pric_cond[] = ls_pridoc-pric_cond[].
    move-corresponding ls_cond to ls_cond_chg.
    ls_cond_chg-waers = 'EUR'.
    ls_cond_chg-kbetr = lv_kbetr.
    insert ls_cond_chg into table ls_pricom-cond_change.
    append ls_pricom to lt_pricom.
    call function 'CRM_ORDER_MAINTAIN'
       exporting
         it_pridoc         = lt_pricom
       changing
        ct_orderadm_h     = lt_header
         ct_input_fields   = lt_input
       exceptions
         error_occurred    = 1
         document_locked   = 2
         no_change_allowed = 3
         no_authority      = 4
         others            = 5.
    if sy-subrc <> 0.
       exit.
    endif.
    call function 'CRM_ORDER_SAVE'
       exporting
         it_objects_to_save   = lt_guid
       importing
         et_saved_objects     = lt_saved
    *   ET_EXCEPTION         =
    *   ET_OBJECTS_NOT_SAVED =
       exceptions
         document_not_saved   = 1
         others               = 2.
    if sy-subrc eq 0.
       commit work and wait.
    else.
       rollback work.
    endif.
    Best Regards
    Tanja

    Hi Tanja,
    I am probably not the right person for code but please review below listed former threads which should be helpful:
    http://forums.sdn.sap.com/thread.jspa?threadID=661004
    http://forums.sdn.sap.com/thread.jspa?threadID=596313
    http://forums.sdn.sap.com/thread.jspa?threadID=186588
    Best regards - Christophe

  • Change in partner at header level not getting copied to item level

    Hello,
    I would really appreciate any help from the forum on the below query.
    How is it possible that a change in the Employee Responsible(Standard Partner Function) at the header level is not triggering a change in the item level?
    Thanks,
    Sahil

    Hi Sahil,
    Please look into below note.
    It may hint you something.
    1008458
    Rgds
    Hari

  • Change S/C Currency, at Header Level Not Item Level

    Hello,
    We have a requirement for a requisitioner to be able to purchase for two different companies with different currencies. However, when the requisitioner creates a shopping cart, the shopping cart header defaults to the default currency and cannot change it. The company and currency can be changed at the item level but not the header.
    Has anyone encountered this requirement? If so, how did you handle it?
    Regards, Dean.

    Technically, there is a header, not a header like EKKO. There is a S/C header that contains the S/C guid, curreny key and other S/C information. The tables involved are CRMD_ORDERADM_H and BBP_PDHGP.
    In the BBP_DOC_CHANGE_BADI that was mentioned above, was already considered as a place to make the currency change since structures IS_HEADER and ES_HEADER are available for processing.
    I was hoping for a better solution that having to do alot of coding.
    Regards, Dean.
    Edited by: Dean Hinson on Apr 29, 2008 7:10 PM

  • PO number prints only if it is at header level not for item level

    Hi All,
    I am not able to print the PO number in my order acknowledgement and COA printout when I enter the PO number in the sales order at item level of only. It prints fine when it is at the header level.
    Please assist.
    Thank you,
    Shanu Jain

    Hi,
    BSTKD Field in the VBKD is dependent on two things . IF the Header PO Number is same as the Item number if u change at Header level it will be changed at all items level also. If both are diff then if u change the PO Number at Header level it will change PO numbers of the Items which is having same value as Header Po Number otherwise it wont change the Item PO Number .
    Ex " Order Number 1000 is having PO Number at Header Level is PO1. And the sales order is having Item 010 and 020.
    IF Item 010 and 020 is having PO1 at item level if u change the value of PO1 at header Level if will be applicable to items 010 and 020.
    If Item 010 is having Po Number PO1 and 020 is having PO2, if i change value of PO number at header to PO3 then it will change Item 010 PO Number to PO3 and Item 020 PO Number will be same as PO2.
    Try to Take The VBKD - BSTKD where Item Number POSNR is blank that means Header PO Number .
    IF u want Item Po Number then pass the item number in POSNR and get it.
    Regards,
    Srinivas.

  • Incoterms on Item level is not updated on STO.

    Issue: they have created a STO with wrog incoterm, now the issue is that the Incoterms on PO--> Item level is not updated if Incoterms on Header level is changed. I suggested them to change incoterm on item level manually, but user is saying the problem is that SAP doesn't change automatically Incoterms on item level if Incoterms on Header level are changed??
    What user is saying..Is this correct? or any thoughts/solution to fix this issue?
    Can anyone suggest me on this?
    Thanks & Regards
    Suresh Babu

    HI,
    Try this link
    How Incoterms gets defaulted for STO
    Regards
    KK

  • Tax code is not flipping in invoice item level.

    Hi Gurus,
    I am facing one issue while creating MIRO transaction.when i am changing the tax code at header level .tax code is not changing at item level based on header level.and i am enabling the Tax flag indicator to NO.
    but this functionality working fine in Quality and development system not in production !!
    kindly advice me how to solve this issue . is it a configuration issue?
    regards
    prasad.

    HI,
    I am facing one issue while creating MIRO transaction.when i am changing the tax code at header level .tax code is not changing at item level based on header level.and i am enabling the Tax flag indicator to NO.
    If you change tax code at header level then you calculation will be according to that tax code ,check your tax value in header
    once you check tax code in header level then why you want to change it in item level now ?
    check tax calculation first it is correct or not .
    Regards
    kailas Ugale

  • Multiple Shipto values at item level

    Hi Friends,
    I'm facing some problem when I try to change the ship to value at item levels of VA02. The problem is,
    In VA01, while creating a sales order, the configuration is done in such a way that after giving an item at item level, a sub-item will be generated automatically based on that main item. Now in VA02, for that newly created sales order, if I go to the details of the main item, and if I change the value of the shipto in Partner's tab, then it'll ask for redetermining the value and also for completing the delivery. After completing the delivery, if I save and go to display mode, the shipto value of the subitem level also should update. But it is not updating with the value of main item. Can any of you please suggest me the solution for my problem.
    Many thanks in advance.
    Thanks & Regards,
    Raghuveer K.

    Hi Soumyadip,
    Many thanks for your response.
    I did the same thing. I checked it in both the userexits <b>uderexit_save_document</b> and uderexit_save_document_prepare. Even then it is not working. When I checked it by keeping a watchpoint, it is calling a function module RV_DELETE_POSITION_PARTNER. There it is deleting the subitem values. Since this is a standard prog, we don't have authorizations to avoid it. So how to overcome this issue.
    Please suggest me.
    Thanks & Regards,
    Raghuveer K.

  • Best Practice: Dynamically changing Item-Level permissions?

    Hi all,
    Can you share your opinion on the best practice for Dynamically changing item permissions?
    For example, given this scenario:
    Item Creator can create an initial item.
    After item creator creates, the item becomes read-only for him. Other users can create, but they can only see their own entries (Created by).
    At any point in time, other users can be given Read access (or any other access) by an Administrator to a specific item.
    The item is then given edit permission to a Reviewer and Approver. Reviewers can only edit, and Approvers can only approve.
    After the item has been reviewed, the item becomes read-only to everyone.
    I read that there is only a specific number of unique permissions for a List / Library before performance issues start to set in. Given the requirements above, it looks like item-level permission is unavoidable.
    Do you have certain ideas how best to go with this?
    Thank you!

    Hi,
    According to your post, my understanding is that you wanted to change item level permission.
    There is no out of the box way to accomplish this with SharePoint.               
    You can create a custom permission level using Visual Studio to allow users to add & view items, but not edit permission.   
    Then create a group with the custom permission level. The users in this group would have the permission of create & add permission, but they could no edit the item.
    In the CodePlex, there is a custom workflow activities, but by default it only have four permission level:
    Full Control , Design ,Contribute and Read.
    You should also customize some permission levels for your scenario. 
    What’s more, when use the SharePoint 2013 designer, you should only use the 2010 platform to create the workflow using this activities,
    https://spdactivities.codeplex.com/wikipage?title=Grant%20Permission%20on%20Item
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Unable to change requested delivery date in the sales order at item level.

    The issue is when I create order with one material (linked to network and project is created automatically in the background), I am able to change (in change mode) req delivery date for an item, but when I create order with 2 materials (linked to network and project is created automatically in the background), I can not change (in change mode) the req delivery date of any item. Req delivery date is then copied from the header req delivery date.
    Is this a standard SAP functionality or a defect?

    Req del date is the date requested by customer and  can be changed at item level. Probably the confirmed date in the schedule line is derived from the network scheduling after ATP check. (ATP check is not activated in this case)
    I am able to change the req del date at item level if there is only one item (Linked to network) and not when there are two line items (Both are linked to 2 diff networks belonging to same project)
    I tried to change the date in the network, scheduled and saved but that didnt change the date in the sales order. On the contrary, if I run ATP check, netowrk dates get back to original dates derived from sales order.

Maybe you are looking for

  • Date and time field help

    Hey guys and gals, I'm working on a basic simple form that I'd like to use as a fax cover sheet and I'm brand new at this and I just can't find the answer anywhere. The only way I can get it to show the date and time is if I choose calculated - read

  • System image won't finish on HPE-519c (W7, 64-bit)

    I'm having an issue where system image runs until about 90% and then fails - the error message says device not ready, error 0x80070015. How do I correct this? The system image worked fine the last time I tried, about a week ago.

  • Error when creating the queries with BI Roles.

    Hello, Business Requirement : We need to see the BI query reports to show up in User Menu. Action Taken : I tried to add the BI queries to BI Role on Menu tab with BW report ID/name by clicking other button. But still not showing up in User Menu. Any

  • Getting errors while starting weblogic 9.1

    i successfullly installed weblogic 9.1 in solaris 10 machines. I've used jdk1.5.0_09 for weblogic installation. I configured the base domain. While starting the domain, i am getting the following error. Plz help ASAP. JAVA Memory arguments: -Xms256m

  • External Monitor and MacBook

    I have one external monitor. I want to be able to use the Macbook trackpad when using my external monitor but I woild like the macbook monitor off, even when it's open. I this possible?