Change order address (iw32)

I have created custom tcode similar to that of Iw32 and i need to add  functionality to change of address button.
I should be able to change the address and post back ..
Please let me know if there is any bapi/ fm to change the address

Transaction Code - IW32                     CHANGE ORDER
Exit Name           Description
IWO10012            Maintenance order: Priority handling on central header
No of Exits:          1
BAPI-step by step procedure
http://www.sapgenie.com/abap/bapi/example.htm
list of all BAPI's
http://www.planetsap.com/LIST_ALL_BAPIs.htm
USER EXIT
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sapgenie.com/abap/code/abap26.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
http://www.easymarketplace.de/userexit.php
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sappoint.com/abap/userexit.pdfUser-Exit
http://www.sap-img.com/ab038.htm
http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
FUNCTION MODULES
http://www.erpgenie.com/abap/functions.htm
http://www.sapdevelopment.co.uk/fmodules/fmssap.htm
http://www.erpgenie.com/abap/index.htm
http://www.geocities.com/victorav15/sapr3/abapfun.html
Rewards if useful.........
Minal

Similar Messages

  • To change shipping address in sales order

    Hi experts,
    I have an issue here. I tried to change shipping address in an existing sale order. However, even tough I have changed and updated the shipping address in Business partner Master data. and the sale order itself, SAP still prints the old address for the shipping.
    It is possible to change? or it is one of the control by SAP?
    Thanks in advance!
    Phil

    Hi Phil,
    Is this Sales Order generated through Quote?
    Thanks,
    Gordon

  • How to change shipping address for existing order

    I've changed it in My Account prior to the order, and the system persisted in using my old address. With nearly no possible way to speak to a human, and without the ability to edit my order, I am at a loss as to how to get my product shipped to the desired address.

    Hopefully it's not too later to do this >  Viewing & Changing Orders - Apple Store

  • 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 the Address for Shipto party for a Service Order..... pls respond

    Hi friends,
    When i create a Service Order, using CRM_ORDER_MAINTAIN, I want to pass Ship to party number and its address.(its not Master data from BUT000, ADRC tables.).
    THe address data what i mean is when we go to Partners tab, the address you see is not master data.
    I want to update this address.
    Somehow i was able to create with my Shipto party , but im not able to give the address in the IT_PARTNER parameter of Crm_order_maintain.
    How can i give the address aswell, when i create Service order, or even changing a service order.
    Basically i want to change the address of ship to for a SO.
    kindly respond....
    thanks in advance,
    Niraja

    THis is the code i wrote to update the street: . but its not updating.. :((((((((((
    pls hlp fnds...
        CLEAR: ls_input_fields.
        ls_input_fields-objectname  = 'PARTNER'.
        ls_input_fields-ref_kind    = c_a.
        IF p_header-guid IS INITIAL.              
          ls_input_fields-ref_handle = c_handle.
          ls_sconf_partner-ref_handle = c_handle.
        ELSE.
          ls_input_fields-ref_guid = p_header-guid.
          ls_sconf_partner-ref_guid   = p_header-guid.
        ENDIF.
        ls_partfieldnames-fieldname =  'ADDR_NP'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'ADDR_NR'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'ADDR_ORIGIN'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'ADDR_TYPE'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'STD_BP_ADDRESS'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'KIND_OF_ENTRY'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_partfieldnames-fieldname = 'STREET'.
        INSERT ls_partfieldnames INTO TABLE lt_partfieldnames.
        ls_input_fields-field_names = lt_partfieldnames.
        CONCATENATE '000000000055 ' p_header-shipto_no '        BPBP'
               INTO  ls_input_fields-logical_key.
        INSERT ls_input_fields INTO TABLE lt_input_fields.
        ls_sconf_partner-ref_partner_handle = '0001'.
        ls_sconf_partner-ref_kind = c_a.
        ls_sconf_partner-ref_partner_fct = c_00000055.
        ls_sconf_partner-ref_partner_no  =  p_header-shipto_no. "'0010017295'.  "
        ls_sconf_partner-ref_no_type = 'BP'.
        ls_sconf_partner-ref_display_type = 'BP'.
        ls_sconf_partner-kind_of_entry = 'C'.
        ls_sconf_partner-partner_fct = c_00000055.
        ls_sconf_partner-partner_no  =  p_header-shipto_no. "'0010017295'.  "
        ls_sconf_partner-no_type = 'BP'.
        ls_sconf_partner-display_type = 'BP'.
        ls_sconf_partner-mainpartner = 'X'.
        ls_sconf_partner-addr_nr = '0000060435'.
        ls_sconf_partner-addr_np = ''.
        ls_sconf_partner-addr_type = 1.
        ls_sconf_partner-addr_origin = 'B'.
        ls_sconf_partner-relation_partner = '48222495E5735887E1000000CC9AA02A'.
        ls_sconf_partner-std_bp_address = ''.
        ls_sconf_partner-street = 'helloteststreet'.
        INSERT ls_sconf_partner INTO TABLE lt_sconf_partner.
    Can somebody give me any hints. pls ......
    thanks in advance,
    Niraja

  • How To Change Order of Email Addresses in Address Book / groups / Mail?

    Many records in my address book have multiple email addresses.
    No big deal but I wonder if there is a way to tell Address Book / Mail which address to pick as the default.
    For example I send a litttle news email one a week to a group of contacts.  I want to send this email to people's personal -- not business -- email address.  I've created a group in Address Book and type that group name in my Mail to line and the group pops up.  But a few of the records pick the corporate address and I have to go in and change those addresses.
    I just tried editing one record ... I deleted both "work" and "home" addresses from a record.  Then reentered them "home" first, "work" second.  But when I closed the edit Address Book listed them in the original order (maybe alpha).
    Any ideas?
    Thanks

    jayessemm wrote:
    I wonder if there is a way to tell Address Book / Mail which address to pick as the default.
    Address Book: Edit > Edit Distribution List…

  • Changing customer address also update customer orders address

    Hi,
    when yoiu create a customer order, the addressnumber of the customer (KNA1-ADRNR) is copied to the order (VBPA-ADRNR). if you change the customer adress (i.e. with VD02), the new address is saved under the same address number. so all orders, which are referencing to the addressnumber are als changed! Sometimes this is ok, but we prefer another behaviout.
    Is it possible to save the new customer addres under a new addressnumber? This wolud have the effect, that the existing customer orders are unchanged and the new address will olny influence new orders in futire.
    Does anybody know a user-exit or customizing for this? perhaps an enhancement?
    Best Regards
    Torsten

    Hi
    No I don't think it, but it can change the address in the sales order in order to restore the old one, so the system will generate a new address number but fir the sales document instead of customer
    Max

  • SPL block when changing the Address manually at Sales order level

    Hello all,  I hope every one doing well
    I am facing one problem in SAP system, when I am chanigng the Partner address at sales order level , system giving the SPL block , without screening even though the customer is a good customer.
    I checked in Img: GTS -> SAP Compliance Management->"Sanctioned Party List Screening" Service->Control Settings for "Sanctioned Party List Screening" Service->Sanctioned Party List Screening Strategy for Customs Docs tested with  as " Status check of unchanged Addresses( Partner Address) and New check of changed Addresses.
    I didn't find any difference. Sales order getting block for the above cases when changing the Address at Sales/Create document level.
    Please let me know  how to resolve it.
    Is it related to configuration  if yes how  ? pr
    do we  have any OSS Notes to Rescreen the Sales orders with compliace even though changing the Address at sales order level ( ship to party address changes like Name, city, email id, of fax )?
    or
    do we need to do the Enhancement for Rescreening when changing the ship to party adress (changes like Name, city, email id, of fax )
    manually at sales order level ?
    Thanks in Advance
    NVR

    hello Sameer,
    1. Whether your Embargo service is activated for the Country of Plant from which your order is getting shipped. -- Yes I have activated the Country under Embargo list.
    2. Whether the partner function for which you changing the county detail has been added in into the Partner group which is assigned to Embargo services.( GTS)-- Assinged the Sold to Party ( AG) for PGEMB2- Partner group
    3. Whether the country which u putting as Embargo has been maintianed under Embargo country list,
    - yes
    What I am doing exactly is , I am creating sales order with US customer master , but I am chaning the Country Key as Embargo country ( Ex: CU, SY, IR) at VA01 , or VA02 level Sales order header Partner tab level for Sold to party address ( changing only country key as embargo country) , not to ship to party  ( ship to party still US country key only), at that time system not blocking the sales order as embargo.
    please let me know if any once come across this sistuation..
    Thanks in advance
    NVR

  • Change customer address in sales order

    Hi,
    is there any possibility to change the address in an sales order
    for the customer in Field sold-to party.
    i don't want to change it via xk02.
    i don't want to use another ship-t party customer.
    Only one customer shell be used and the address shell only be changed
    for a specific sale-order.
    Any idea?
    thanks.
    regards, Dieter

    if you want to change address in VA01,or VA02 Transaction manually then
    double click on sold to party number ,here you can change -> manually
    if you want to change programtically -> use MV45AFZZ Include ->
    FORM USEREXIT_SAVE_DOCUMENT_PREPARE.
    ENDFORM.
    write the code above routine ,first get the data adrnr from vbpa,then update into ADRC Table
    Thanks
    Seshu

  • Overwrite Maintenance order address in IW32

    Hi expert,
    I've got requirement to replace some value in Maintenance order address (for example: Name and Postal Code) that was changed by user and need change it back to previous value.
    I tried to use EXIT_SAPLCOIH_009 but didn't get the details in that user exit.
    I've also tried BADI ADDRESS_UPDATE and using method ADDRESS1_SAVED.
    I could find new value in IM_T_XADRC but It's protected, then I try to directly change name value in :
    (SAPLSZA0)XADRC[]
    (SAPLSZA0)ADRC
    (SAPLSZA0)ZADRC[]
    but after save the value was not changed to my replacement value.
    Really appreciate any inputs

    the issue solved by myself, using BADI ADDRESS_CHECK
    thanks

  • Ordering Calendars for delivery in different countries?  Live in the UK and want to order a calendar for printing/delivery in Canada.  However - can't change the default country -even changed the address in my Apple Account, no result.  Any suggestions?

    Ordering Calendars for delivery in different countries?  Live in the UK and want to order a calendar for printing/delivery in Canada.  However - can't change the default country -even changed the address in my Apple Account, no result.  Any suggestions?

    The general rule is that the shipping address must be in the same country as the billing address of the credit card used to order. However, you can try changing the Print Products store in iPhoto's Advanced preference pane to Canada and try ordering again.
    Happy Holidays

  • BSP for IW32 (Change order)

    Good day!
    Anybody know, can i use BSP technology for Change Order?
    I need edit Order by Web Page.
    Maybe you already use this function?
    Points will give.
    Regards.

    the easiest option would be to use ITS , but you dont have much control over the look and feel of the page.
    on the other hand if the number of fields needs to be changed is small then you can create them in bsp .
    if you want to recreate the entire iw32 in bsp withe all the checks and default values, it will be a time consuming job.

  • I'm tring to allow a pop up so I can change my address on my drivers license. everytime I enter the address for the document , I get."what is the host name?" I'm clueless as to the host name

    I am trying to disable my pop up's in order to allow an address so I can change the address on my drivers license. When I enter the address that allows the document that I need to appear, I get, "what is the host name? I don't know what they mean by host name.

  • Printing PO in the language of OA (ordering address)

    Hello all,
    In our POs we use partners VN (Vendor) and OA (Ordering address). The PO is printed with the address of OA, the output type NEU has the partner role OA .
    Sometimes the language key in the vendor master data of OA is different from the language key in the vendor master data of VN.
    When printing a PO the language is always the language from  the vendor master data of VN. How to print with the language of OA? Is there any user-exit or some modifications have to be made?
    In the PO, in the message NEU the language could be changed, e.g. from DE to EN. But the changed language is ignored and the PO is printed again in the language of the VN.
    Thanks&regards

    HI,
    When you are entering the address of the vendor in the address view there is an icon named INTERNATIONAL VERSION where we can maintain another address in any language.
    Why dont you maintain your Ordering Address there and call this address in your PO.
    Oops i thought only address you wanted.. Sorry
    If you want the total PO to be printed in OA address.
    1. chec for language add on is installed
    2. translate all the objects into ur OA language
    3. *** Check the printer character format*** very important... ask the basis person as in my project also we have EN, TR, BG .. this would certainly solve ur problem.
    4. You can change your lanuage to VN or OA language any time durning the creation of PO
    Hope you got what I said.
    Reward if useful
    Thanks & Regards,
    Kiran
    Edited by: Kiran. V on May 1, 2008 4:32 AM

  • Change of address in CMR

    Hi Guys,
    here My client is asking change of address in Customer Master Record,.  It is very is to change the address from A to B in XD02,  for coming all the sales orders system will take the changed address B only,  at the same time it is taking previous sales orders alsolike B only.  But  He is asking the addrss for that previous transaction as same as beforelike A only.
    with regards,
    Sathya...

    Dear Sathya,
    Our friend Shasidhar already mentioned that
    As per the SAP standard the previous sales orders or sales documents also(i.e which are having old address) will get updated with the new address.
    I hope it will help you,
    Regards,
    Murali

Maybe you are looking for

  • PRODUCTION ORDER STATUS AFTER CO11

    HELLO ALL, I WANT OT KNOW THE STATUS OF PRODUCTION ORDER AFTER CONFIRMATION. If X prodcution order has been confirm on shop floor. and submited to QC. Next step is quallty inspection,then it will go to  finished goods store, then despatch. How can i

  • Questions on Alert monitor

    Hi,        I have few questions on alert monitor. 1. If we create an alert and have it as default macro, does it display in interactive planning book without a alert profile assignment? or should we assign an alert profile to see alerts in planning b

  • Cisco Prime Infrastructure MESH LINK ISSUE

    Hi, a Customer of us has a trouble with cisco Prime Infrastructure 1.2.0.12 and AP mesh link. There is an huge database ( i suppose the issue can be here ) and when we display some map ( each floor has about 6 RAP and 24 MAP ) we cannot see the MESH

  • Screen Modification Problem ...

    While i am Working on Screen Modification i set Field  ABKRS as Out Put Field in IT001 .But Now Client asking just we need that field Out Put Field as one Emp Group  remaing as required Field, How Should i do.Is it possiable through IVWID Feature?

  • Automatically booting into safe mode?

    Hi, For the last few days my imac has been automatically opening in safe mode and I have no idea why or how to stop it doing this. Before it started doing this, I never tried to safe boot it and had been having no problems with the mac at all. No new