Different delivery address in PO

Dear Sirs,
          We have rented a warehouse outside our plant premises for storage of goods. when we are raising PO we want to indicate the delivery address of our storage location not that of our plant.
we want to indicate in the PO that PO is raised from our plant but the goods are to be delivered at our warhouse address.
how this can be done in PO
regards
ajay

Hi Ajay,
This can be done easily through Tcode:MEAN (Maintain delivery address). Just go to this transaction and create ur warehouse address and save it. This will be saved with a unique address number in table adrc.
In the purchase order, item details screen click on 'delivery address' and just input the address number in the field 'address' by clicking F4 u can select the appropriate address number (Here the address group must be ME01). Then the selected delivery address will be your warehouse which will be seen in the delivery address screen.
Hope this helps.
Thanks,
Viswanath

Similar Messages

  • Different delivery address in multiple line items of SC

    Hi All,
    Requirement: If we have different delivery address in multiple line items of SC, the first line item delivery address should be replaced by other line items.
    I would like to know the relation between first line item in the shopping cart and its correspnding delivery address?
    I have compared the guid of first line item (BBP_PD) and guid of shipping address (second guid not partner guid) which were not same.
    Any alternatives we have.
    Thanks and Regards,
    /N

    Hi Naveen,
    I guess you would like to change the delivery adress in the BBP_DOC_CHANGE_BADI.
    Here you can identify the delivery adress (partner function 00000027) line item by the field P_GUID. This P_GUID in the partner table (ET_PARTNER-P_GUID) consists the GUID of the SC line item (ET_ITEM-GUID).
    When you know the line item GUID, you can find the SC line item number in the item table (ET_ITEM-NUMBER_INT) and you can see which is the first, second... line item of the SC.
    Regards,
    Peter

  • Split Invoice due to different delivery address.

    Hi,
    I have an issue because I want to create only one invoice from two deliveries also from the same sales order. The system doesnu2019t create only one invoice due to the different delivery address in the Ship to party, the code is the same however in each delivery we have different delivery address. I will like to know a way in order to create only one invoice.
    Thank you and best regards.

    Dear Alberto
    In normal circumstances, invoice split will happen if any of the following is different in preceding documents like sale order or delivery
    -  Payer
    -  Actual GI Date
    -  Inco terms
    -  Payment terms
    -  Account Assignment Group
    -  Exchange rate in case of exports
    Nevertheless, do Split analysis in billing and post the same.
    thanks
    G. Lakshmipathi

  • Subcontracting different delivery address

    Folks,
    I have a material that is subject to subcontracting. The order is placed at vendor 1 but the components first need to be delivered to vendor 2. After vendor 2 is finished, he will deliver the components to vendor 1. Vendor 1 will do his thing and deliver it back to the plant. Vendor 1 will invoice. Vendor 2 only acts as delivery address. How to capture this in SAP?
    Thx,
    MdZ

    Hi Juergen,
    Thanks for your reply. Vendor 2 will send an invoice to vendor 1 in this case.
    I've thought about 2 subcontracting orders as well but the problem with that is, that I need to send components twice.
    I.e. component A & B need to be sent and we receive material C.
    So PO 1 subcontracting for vendor 1 with BOM for material C to be received and A & B to be sent. Stokc at subcontractor is material A & B.
    So in case I create another subcontracting order but for vendor 2 which needs to be delivered to vendor 1, which material do I send to vendor 2? In case this is C, and I do GR for PO2, the material will be booked into vendor stocks, What do I do with that material?
    Regards,
    MdZ

  • Maintain 2 or 3 more different delivery address for Client and Vendor

    Hi Experts,
    How to Maintain 2 or 3 different address for one client ...without partner function and without contact..
    Regards,
    Anthyodaya.

    still pending..

  • Different PO through SOCO with different delivery address

    Hi,
    We are facing issue with sourcing cockpit. While creating purchase
    order for multiple shopping carts through Sourcing cockpit, If multiple
    line item have different shipping location it is creating different
    Purchase orders.
    We have requirement to create one PO with same vendor for multiple line
    items. For above problem we are keeping same vendor even though it
    creates two seperate POs.
    Kindly advise.
    Thank you
    Ritesh

    Hi Ritesh,
    Please check the answers in this thread :
    PO split  in  sourcing cockpit   ?      :-(
    BADI BBP_SC_TRANSFER_BE
    Method GROUP_PO
    Kind regards,
    Yann
    Message was edited by: Yann Bouillut

  • Change of sales order address while changing the delivery address

    Hi,
    Problem: Changing delivery address in outbound delivery is changing the originating sales order address for one user while for a different user id the sales order and delivery has their different delivery addresses.
    Scenario:
    1. A new sale order is created and its address for ship to party is modified (to say A1)
    2. Delivery for the sales order is created and the ship to party address is modified (to say A2).
    While executing this scenario with two different users we are getting different result
    For user 1, after step 2 both the sales order and delivery has shipping address as A2
    whereas for user 2, sales order has address A1 and delivery document has address A2
    How can this difference in behaviour be explained?

    Found the solution myself,
    The standard behavior is being modified in the user exits V09A0001 ( Reference/duplicate decision making manual address). Also refer to note 97832 for detailed solution.

  • Changing line item delivery address in shopping cart need to reflect same in all line items

    Hi All,
    Need help on below,
    I have a requirement that when we change the shopping cart line item delivery address same needs to reflect all line items.
    Suppose a shopping cart having 3 line items 1, 2 and 3. if i change the delivery address of line item 1, the same needs to reflect the line item 2 and 3 as well.
    In my case  if we change the 1's delivery address, after processing its genrating the IDOC on line item wise not in the header wise. And same having the different delivery address.
    Thanks in advance.
    regards:
    Ramesh

    Hello Ramesh,
    we can do this changes in BBP_DOC_CHANGE_BADI . Create a Implementation for the above BADI and Inside that Implementation BADI method just call the function module BBP_PD_SC_GETDETAIL for SC item details by passing the Header GUID.
    Once you get the Partner table(E_PARTNER) details.. Keeping a loop on SC item(E_ITEM) and change address number(ADDR_NO) in Partner table when Partner function eq X( X is an partner function values which you define in SPRO.).
    pseudo logic:
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid    = l_guid
        TABLES
          e_item    = lt_item
          e_partner = lt_partner.
    * Check for all the line items if vendor is assigned
      LOOP AT lt_item INTO lwa_item.
        READ TABLE lt_partner INTO lwa_partner
                          WITH KEY partner_fct = '00000019'
                                   del_ind     = space
                                   p_guid      = lwa_item-guid.
        IF sy-subrc eq 0 .
       * modification of address number logic here in partner table
        ENDIF.
      ENDLOOP.
    All the best.
    Regards,
    Sankarbabu

  • Delivery address in PO line item

    Hi Friends,
    Need your inputs/ suggestions .
    THe delivery address in PO line item is taken from plant / Sloc details .
    If this text is changed , the changed details should be picked / outputted (and not the data / Master data  of plant / Sloc )
    is there any  FM / user exit ?
    Thanks in advance ,
    regards,
    CK

    Hi  I have a problem  the deivery address tab is not visible in my PO  I tried  SHd0  but still I could not able to find it .,
    My requirement is I need to maintain   different delivery addresses and different bill to addresses .
    I also tried and open the SLOC filed in the PO  but It is not allowing me to input it is grade out . If I am able to enter different sloc I can change the delivery address.
    give me your inputs   .
    SD

  • Different Delivery Addres and Different Payment Terms

    Hi
    Is possible to maintained different Delivery address for one Ship to party and Is possible to maintained Different Payment terms for one Customer
    Regards,

    Hi uday
    for the payment terms , you can change in the line item in the sales order level ,
    for the delivery ship to party address , in the sales order ,  go to item data or header data - > partner functions - > select the ship to party , you will get the address of that ship to party , change it
    I found only this way  but i have not seen the affect as i am not in front of SAP system
    Reward if useful
    Regards
    Srinath

  • Delivery Addresses

    Hi Friends,
    We have a requirement in our project. We have different Ship To Party codes which are entered in sales order. But these Ship to parties have different Delivery Addresses on which in the invoice will be printed.
    When Ship to party is entered in sales order a selection should be available to mention the delivery address where material is to be shipped.
    In delivery note, Packing Note & Invoices thew ship to party code & the delivery address needs to be printed.
    But the ship to party code will have to be kept only one.
    Please suggest how this can be tackled.
    Quick responses will be highly appreciated
    Regards
    Dhananjay

    Hello,
    Through this we will have to change the address every time in delivery.
    My requirement is that like we have multiple ship tp party under a single sold to party, I want multiple
    delivery addresses under a single ship to party.
    Option should be available in order creation only to select the delivery address for single ship to party.
    EG:
    Sales Order
    Sold To Party = 60001
    Ship to party  = 004211
    Delivery Address = 001 (Viman Nagar, Pune)
    Delivery Address = 002 (Balaji Nagar, Pune)
    At order level after entry of sold to party & ship to party, I must be able to select a delivery address for this ship to party from above mentioned two (001 or 002)
    Please tell me how can this be tackled
    Regards
    Dhananjay

  • 1order 6 delivery addresses

    Hi,
    I have created a single sales order with 6 line items.
    I went into each line item at item level tried to chage the ship to parties for each line and saved
    in change mode when I see it is all again went back to the same single Ship to party.
    Now how can I deliver all 6 line items to 6 different delivery addresses?
    I tried to search the forum and found some but not with much to the use of resolution.
    I would appreciate any help.
    Regards,
    Sridhar.

    in change mode when I see it is all again went back to the same single Ship to party
    Definitely, this is not a standard functionality.  Must be some user exit is in place.  Please retest in debug mode with the help of technical team and find out which exit is triggering this issue.  May be it could be MV45AFZZ
    G. Lakshmipathi

  • Same Vendor with different delievery address - subcontract challan plz help

    Dear Experts,
    I am sending the same material to the vendor, and making the subcontracting challan against that. now my problem is that the vendor is having two different delivery location. so i have to transfer the material to two different location with two different subcontracting callan.
    so what should i do? how can i do 541 for two different delivery address but the same vendor code.
    please guide on priority.
    any answer which will help me achieve the solution will be rewarded

    Alternative:
    Your Requirement is for printing the delivery address as per the delivery address given by vendor. This u can do by maintaining an additional partner function. Add this partner function to the purchase order. In the print the address is picked from the master data of this additional partner.
    If u want tracking at the level of your stock at which vendor site, then u need to maintain two vendors.

  • Ship to party and Delivery address Different?

    The requirement is that the Ship to party address be different than the delivery address.
    Options i have thought about is
    1) Maintain the ref address in TEXT.
    2) Maintain a separate partner function.
    Please give suggestions as to how can we maintain 2 different addresses for the same ship to party?
    The user wants to have both addresses on the document.
    The TEXT option is not acceptable by the user.
    Please help.
    Thanks in advance. Point will be awarded for any helpful answer!
    Regards,
    Shrads

    This kind of requirement is very common in Consumer goods industries. I have worked on similar kind of requirement and we have mapped it in sap as below.
    1.Create customer master record with a new account group for the delivery address with parnter funciton as SF(Ship For)
    2.Assign this SF record in SH master record or SP record
    2.In sales document parnter determination proceudre include the parnter function SF by fetching it either from ship to master recrod or sold to
    Please let me know if you need any further details.
    Thanks,
    Srini

  • 2 Line Items having different ADRNR even if their Delivery Address is same

    When I change the Delivery Address of a PO line item (eg. line item 10) manually to the Delivery Address of another line item (eg. line item 20), their ADRNR remain different.
    Shouldn't line item 10 adopt the same ADRNR as that of line item 20?
    Is their any other way to copy a line item's Delivery Address to another line item (already existing, not a new line item) so that their ADRNR (or in that case any other field)  remains same?
    I need a way to know whether the addresses of 2 line items are similar or not?

    Hi,
    When you create a manual address for a PO line item in backend it creates the new address master data and stores it against the new ADRNR number and which is stored in EKPO-ADRNR for that PO line item.
    Once this ADRNR is created you can use this as a reference in the second line item by using ADDRESS field option under Delivery address tab where in you have to mention the 1st line item's EKPO-ADRNR number then the same address get copied with the same ADRNR number.
    I am not sure whether there is any better option unless you are copying the complete line item with reference to the other.
    Cheers,

Maybe you are looking for