User exit to change shi-from address

Hi Guys,
      Help me if you know an user exit for changing ship-from address while creating sale order.
Thanks.

Hi
EXIT_SAPLV09A_001
You can use this user exit to control whether an address that was entered manually and has already been used in other documents (referenced), should be referenced again if it changes or whether a new address should be created (duplicated).
Hope this may help you
Regards
Srinath

Similar Messages

  • Any user-exit to change VBAK from VA02?

    Hi all,
    I have an urgent problem to fix in few hours but so little ideas for the moment, in deed I have to fill the field VBAK-STCEG_L in T-codes VA01, VA02, VA21, VA22, VA41 and VA42 according to some conditions from table VBPA, I can't find any user-exit or BADI to implemant my code so any solution would be welcome.

    Hi,
    These are the availble Enhancements and BADIs
    Enhancement                                                                               
    V60F0001                                SD Billing plan (customer enhancement) diff. to billing plan
    V46H0001                                SD Customer functions for resource-related billing          
    V45W0001                                SD Service Management: Forward Contract Data to Item        
    V45S0004                                Effectivity type in sales order                             
    V45S0003                                MRP-relevance for incomplete configuration                  
    V45S0001                                Update sales document from configuration                    
    V45P0001                                SD customer function for cross-company code sales           
    V45L0001                                SD component supplier processing (customer enhancements)    
    V45E0002                                Data transfer in procurement elements (PRreq., assembly)    
    V45E0001                                Update the purchase order from the sales order              
    V45A0004                                Copy packing proposal                                       
    V45A0003                                Collector for customer function modulpool MV45A             
    V45A0002                                Predefine sold-to party in sales document                   
    V45A0001                                Determine alternative materials for product selection       
    SDTRM001                                Reschedule schedule lines without a new ATP check                                                                               
    Business Add-in                                                                               
    BADI_SD_SCH_GETWAGFZ                    Scheduling Agreement: Read WAGFZ from S073                  
    BADI_SD_V46H0001                        SD Customer functions for resource-related billing          
    Regards,
    Satish

  • User Exit for Changing G/L account in Accounting Document

    hi all,
    This one is urgent for me. If you guys can help.
    Iam looking for a user-exit to change the G/L account while posting the accounting document.
    If someone has worked on a similar user-exit Kindly help.
    Thanks and Regards
    Varun

    Hi Experts,
    The requirement is to change the GL account when PGI is done for a delivery.
    I have coded in the above user exit for changing the GL account. I am facing the issue here.
    I am changing the GL account through a user exit, but even before the user exit is  called the standard SAP is throwing a error.
    the Error is GL account is blocked for posting in the company code. This check is happening for the GL account what standard SAP proposes from the customization. The GL account that is getting picked is blocked in SPRO for posting in the mentioned company code. Because of the error message, our z code is not getting executed.
    Kindly suggest if some user exits that can be used even before this error message. or let me know if you have any suggestions to over come this.
    I have coded this in the enhancement point. Include  MM07MFK0_KONTIERUNG_PRUEFEN and subroutine kontierung_pruefen.
    Thanks,

  • User-Exit for changing Sales Document Number - Urgent

    Hi Experts ,
                     Please suggest me the <b>User Exit for changing Sales Document Number.</b>
    thanks,
    Jayesh<b></b>

    hi jayesh,
    chech this exit-----EXIT_SAPFV45S_002.
    this exit's description says " Change Sales Document Using Configuration".
    Other available exits are
    SDAPO001            Activating Sourcing Subitem Quantity Propagation
    SDTRM001            Reschedule schedule lines without a new ATP check
    V45A0001            Determine alternative materials for product selection
    V45A0002            Predefine sold-to party in sales document
    V45A0003            Collector for customer function modulpool MV45A
    V45A0004            Copy packing proposal
    V45E0001            Update the purchase order from the sales order
    V45E0002            Data transfer in procurement elements (PRreq., assembly)
    V45L0001            SD component supplier processing (customer enhancements)
    V45P0001            SD customer function for cross-company code sales
    V45S0001            Update sales document from configuration
    V45S0003            MRP-relevance for incomplete configuration
    V45S0004            Effectivity type in sales order
    V45W0001            SD Service Management: Forward Contract Data to Item
    V46H0001            SD Customer functions for resource-related billing
    V60F0001            SD Billing plan (customer enhancement) diff. to billing plan
    Enter these exits name in SMOD transaction and select components. u can find all the user exits available for this exit name.
    Reward me if useful..........
    Harimanjesh AN

  • Need to know the user exit to change unlimited check box in delivery tag

    Need to know the user exit,
    To change the <b>unlimited check box(</b>EKPO-UEBTK) in <b>delivery tag</b> of <b>item details</b> for tcode <b>ME21N/ME22N</b> on <b>SAVE</b>. 
    Thanks in Advance.
    Baburaj

    HI Baburaj,
    Use the BADI ME_PROCESS_PO_CUST to change the unlimited check box(EKPO-UEBTK)
    Implement the BADI and insert the code in the method PROCESS_ITEM
    Example code :
    *Data Declarations
    DATA: ls_mepoitem TYPE mepoitem,
          ls_mepoitemx type mepoitemx,
            ls_customer TYPE mepo_badi_exampl,
            ls_tbsg     TYPE tbsg.
      INCLUDE mm_messages_mac. "useful macros for message handling
    *here we  get item data
      ls_mepoitem = im_item->get_data( ).
    *work area for price value
    data : begin of it_eban,
      banfn type  mepoitem-banfn,
      bnfpo type  mepoitem-BNFPO,
      pries type mepoitem-NETPR,
    end of it_eban.
    *Get the Purchase requisition price from EBAN table
    select single banfn bnfpo preis from eban into it_eban
                                            where
                                              banfn = ls_mepoitem-banfn
                                          and bnfpo = ls_mepoitem-bnfpo.
    *if entry is available.
    if sy-subrc eq 0.
    *check if price is zero
        if it_eban-pries EQ 0.
    *if zero, set FREE field of PO to 'X'.
          ls_mepoitem-uebtk = 'X'.
        endif.
        endif.
    *Set updated fields
    CALL METHOD im_item->set_data
    EXPORTING
    im_data = ls_mepoitem
    Reward if Helpful*****

  • User exits that change invoice price?

    Are you aware of any user exits that change invoice price?  Thanks.

    Hi,
    Pl use MV45AFZZ include. It has many user exists.
    FORM userexit_pricing_prepare_tkomk.
    Here you may your code
    ENDFORM.              "USEREXIT_PRICING_PREPARE_TKOMK
    FORM userexit_pricing_prepare_tkomp.
    Here you may your code
    ENDFORM.             "USEREXIT_PRICING_PREPARE_TKOMP
    FORM userexit_save_document.
    Here the code while saving the document
    ENDFORM.                    "USEREXIT_SAVE_DOCUMENT
    FORM userexit_save_document_prepare.
    ENDFORM.                "USEREXIT_SAVE_DOCUMENT_PREPARE
    Check the below enhancesments components also from SMOD.
    V45A0001
    V45A0002
    V45A0003
    V45A0004
    V45E0001
    V45E0002
    V45L0001
    V45P0001
    V45S0001
    V45S0003
    V45S0004
    V45W0001
    V46H0001
    V60F0001
    Cheers
    Hema

  • How/can I change the "from" address in Mail?

    I just upgraded to Mountain Lion, and have come across a problem.
    I use iCloud for my mail account, but I want to change the "from" address - so the return address on my messages is NOT icloud.
    I could do this in Lion.
    In the mail account settings, there's an option that says "alias" and it lists (me)@mac.com, (me)@me.com and (me)@icloud.com, and then "custom" is an option.
    Great!
    So I choose Custom, and then I can type in the "from" address that I want.
    However, when I go to save those changes, it tells me the SMTP server can't be left blank.
    What?
    It's not blank! I didn't touch it. The icloud server is still there!
    Furthermore, it's greyed out, so even if it WERE blank, it's not like I can edit it!
    Once this happens, the only fix is to delete the whole account from mail, and to disable mail in the icloud control panel, then re-add it.
    Has anyone figured out to work around this?

    Apple's outgoing mail server - just like 99.9% of all other SMTP servers, does not allow "relaying", meaning you use a domain in the 'sent from' address that is different from a domain hosted by the server. The simple reason is to make it harder for any spammer - not assuming you are one - to abuse the server. While bandwidth, server capacity and server load are some issues, the main fear for ISPs is to get blacklisted, and consequently mails from such server being refused by all others.
    It's a general rule, and while exceptions might be technically possible, it would be a manual act which at a certain rate would become unmanageable.
    If you want, read about the antonym, open mail relay servers, here.
    You see, it's actually good behavior and absolutely in your interest to prevent you from using a "non-in-house" 'sent from' address.

  • Adding a Contact Form, is it possible to change the FROM address in the header to the submitter's email address?

    As it stands now the FROM address used is the site default (mine); using REPLY in the resulting email from the form should have the submitters email address not mine. I was able to switch this in the code (form-u1768.php) of an earlier version of MUSE. The PHP has changed in the current version (2014) and I'm not seeing how to pull off the same manual tweak. Any Ideas? Thanks!

    I found this: Re: In adobe muse, how do you control the replyto address for a form?  The site I'm working on is uploaded via FTP to another host.  So, "...the email 'reply-to' header is filled in with the email address entered by whoever filled out the form, so you can hit 'reply' in your email software to reply to the form submitter."  However, what if I want to take my chances on the form mail coming out of my site? Is there a tweak in the PHP that I can perform to change the FROM address to the same as REPLY-TO? Is there any reason this wouldn't work:
    function get_email_headers($to_email, $form_email) {
      $headers = 'From: ' . $form_email . PHP_EOL;
      $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
      $headers .= 'X-Mailer: Adobe Muse CC 2014.1.6 with PHP' . PHP_EOL;
      $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
      return $headers;
    ...vs. the way it is coded by MUSE:
    function get_email_headers($to_email, $form_email) {
      $headers = 'From: ' . $to_email . PHP_EOL;
      $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
      $headers .= 'X-Mailer: Adobe Muse CC 2014.1.6 with PHP' . PHP_EOL;
      $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
      return $headers;

  • User exit  to change material availability date

    Hi Gurus,
       my requirement is like I need to change the material availability date based on some conditions.
    Is there any User Exit to change the availability date so that I can dump my code in the user exit .
    If not is there any alternative process to get the solution.
    Thanks,
    Sudhaa.............

    Hi Sudha,
    Can you tell me your requirement clearly please.
    Regards,
    Dhanunjaya Reddy

  • User exit to change item level data in purchase order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirment is
    For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in itemlevel data.
    Regards,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

  • Inbound IDOC User Exit ZXVEDU04 change IDoc Data

    Hi all,
    We have to develop an user exit for changing the Plant, Shipping Point and Storage location
    We have identified the exit ZXVEDU04 . Is there some other exit for this ??
    But which internal table we are supposed to change this to change the data .
    If possible send me a sample code
    Thanks in Advance .
    Vivek K ..

    Hi all,
    I have done this for a single line item IDoc .
    How do i go for IDocs with more than one line item ???
    I have hardcoded VBAP-WERKS(1) etc for Plant, Strg Loc and shp pt .
    How to identify how many line items are there in the IDocs ??
    Thanks in Advance .
    Vivek K ..

  • Help - User exit to change item level data in Purchase Order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirement is For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in item level data.
    Thanks,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

  • User exit to change account assignments

    Hi gurus!
    Can anyone tell me a user exit to change some fields in Logistics Invoice (MIRO), when a an  fixe asset PO is made:
    BSEG-BSCHL - Posting Key
    BSEG-UMSKZ - Special G/L Indicator
    BSEG-UMSKS - Special G/L Transaction Type
    BSEG-HKONT - General Ledger Account
    I apreciate any help, expecially because we already achieved GO LIVE.
    Thanks in advance, Pedro Mariano

    Hello Pedro,
    We have the same requirement, how did you solve it?
    I would really apreciate your help.
    Thank you,
    Elisa

  • Is there any user exit to change the UOM of a material while creating sales

    Hi experts,
    I have a requirement to change the UOM of the item material in sales order while creating.  Could anybody help me in finding the correct user-exit to change the UOM.
    Thanks,
    srinivas.

    Hi Ravish,
    I am already changing the UOM in the same include and in the subroutine "USEREXIT_MOVE_FIELD_TO_VBAP".  But it is again over writing in the standard program.  What I need to do, to remain same UOM.
    Thanks,
    srinivas.

  • I need to change the "from" address (the "add to addressbook" address) in the first line of emails that I send. How do I do this?

    I need to change the "from" address (the "add to addressbook" address) in the first line of emails that I send so that people reply to my email alias not the address where my emails originate. How do I do this?

    So you have added a new 'Identity' to your existing email address.
    If someone sends an email using that 'other identity'
    you have a choice of where those received emails can go. they can be received into the original mail account, like a collect all in the one Inbox or perhaps sent to Local Folders, so you can see them as separate. Or you can filter on that identity to put those emails in a specific folder.
    When you REply to any incoming mail that has used that new identity email address, it will use the new identity in the Email address in FROM assuming the received email in the main mail account of which the new identity email is applied.
    This should also now offer the added identity email address as an option in the FROM drop down list. So you can easily swap when sending an email if required.
    If you want to send using your default email address to people, but want their reply to use the identity email address:
    Tools > Account Settings
    select the original email address mail account name
    Where it says: 'Reply to addresses: enter the reply to identity email address.
    click on OK
    This means when they click on 'Reply' it will auto insert the Reply-to option.
    This will work providing it is a 'Reply' to an email you sent which contains the Reply-to email address.
    If someone is not actually replying by using the Reply-to new identity email address:
    In other words they are sending you a new email using the original email address because perhaps that is the one in their address book or the one they located on a webpage etc.
    Then, when you select to Reply to that email, it will use the email address to which it was sent to in the FROM field - the original email address. Hence why you would need to select the new identity FROM in the drop down list.
    One way to get around this is set out below.
    If you do not use an identity - instead you create another existing mail account for the 'identity' email address, so you have two mail accounts for the two email addresses.
    You can move selected emails manually or perhaps using a filter to screen them from the original mail account into the newly created mail account.
    Then when you click on Reply, it will use the new mail account email address instead of the original email address.

Maybe you are looking for