VENDOR ADDRESS CHANGE BY PERIOD SPECIFIC

HI,
We have an requirement with same vendor Code the different Address need to be maintained by Period Specific. For example:
Vendor Code: 1000001
Period: 01.04.2007 to 02.04.2008
Address 1
Peiod: 03.04.2008 to 31.12.2008
Address 2
Since by chaging this Address with same vendor code the existing transaction should not affect for the previuos period.
Any Body can throw light on this.
Tks
Mani.

hi
you can do this ,use MK12 where you can maintain planned changes
enter ur vendor
enter the date from which you want to make changes
and select type of data you want to change
hopes this will solve ur problem
reward points if helpful
regards
chetan

Similar Messages

  • Vendor address change

    Hi All,
    I want change the vendor address using bapi_addressorg_change.
    Please give me the example.
    regards,
    rakesh.

    Change, delete and add a telephone number
    DATA: objtype LIKE bapi4001_1-objtype,
    obj_id LIKE bapi4001_1-objkey,
    obj_id_ext LIKE bapi4001_1-extension,
    context LIKE bapi4001_1-context,
    address_number LIKE adrc-addrnumber,
    bapiadtel LIKE bapiadtel OCCURS 0 WITH HEADER LINE,
    bapiadtel_x LIKE bapiadtelx OCCURS 0 WITH HEADER LINE,
    return LIKE bapiret2 OCCURS 0.
    Assign the following object type and object key to a main customer
    address
    objtype = 'KNA1'.
    obj_id = <customer number>.
    obj_id_ext = ' '.
    context = '0001'.
    Get existing data by calling, e.g. FM 'BAPI_ADDRESSORG_GETDETAIL'
    Enter the reference structure data
    The telephone number with serial number '002' is to be deleted and
    the one with serial number '003' updated
    CLEAR: bapiadtel, bapiadtel_x.
    bapiadtel-consnumber = '002'.
    bapiadtel_x-updateflag = 'D'.
    APPEND: bapiadtel, bapiadtel_x. "Delete entry
    CLEAR: bapiadtel, bapiadtel_x.
    bapiadtel-consnumber = '003'.
    bapiadtel-extension = '77733'.
    bapiadtel_x-extension = 'X'.
    bapiadtel_x-updateflag = 'U'
    APPEND: bapiadtel, bapiadtel_x. "Update entry
    CLEAR: bapiadtel, bapiadtel_x.
    bapiadtel-telephone = '06227'.
    bapiadtel-extension = '11111'.
    bapiadtel_x-updateflag = 'I'.
    APPEND: bapiadtel, bapiadtel_x. "Insert new entry
    call change module
    CALL FUNCTION 'BAPI_ADDRESSORG_CHANGE'
    EXPORTING
    obj_type = objtype
    obj_id = obj_id
    obj_id_ext = obj_id_ext
    context = context
    IMPORTING
    address_number = address_number
    TABLES
    bapiadtel = bapiadtel
    bapiadtel_x = bapiadtel_x
    return = return.
    Errors and warnings are in the RETURN table. If successful, the
    organization address and its communication data are now updated
    in the system.
    The adress number is in the ADDRESS_NUMBER field.
    Notes
    To delete, e.g. a telephone number in the table of existing telephone
    numbers for an address, the 'UPDATEFLAG' field in the associated reference structure line must contain 'D'.
    To create an entry, this field must contain 'I' and the data to be inserted must be passed.
    All new lines to be inserted (I) and their reference structures must be after all entries to be changed (U) and deleted (D).
    Change data key fields must always be filled, and are taken intoaccount as far as possible. It is not significant whether, e.g. alltelephone number comments are followed by fax number comments as changedata, or vice versa; only the sequence among entries with the same key
    is significant, unless you pass only some or no communication address or comment serial numbers, in which case the data sequence issignificant .
    The key fields are:

  • Check on vendor email address change before saving PO

    Hi All,
        I need to check Is there any change in Vendor Email address in PO before
    saving. I am trying to find userexits.
    I found some like EXIT_SAPMM06E_012, But here I am not getting complete
    Vendor address...
    Req: I am maintaing multiple email address for Vendor at PO header level.
    Here is the path:  PO Header --> Address tab --> Click on Address Details
    --> Here we can maintain(Insert/ Delete/Change) multiple e mail address.
    So I need to check is there any change in email address before saving.
    Could you please any body help me on this....
    Thanks
    Rays

    Hello Rays,
    One base question,
    Are you going to check the vendor email address manually before saving the PO?
    The vendor address in the puchase order is copied from the vendor master so you can maintain email address (single or multiple) in the vendor master before creating the purchase order. At the time of purchase order creation/save, you can change the default email address and use this to trigger PO to vendor.
    By the way, user exit EXIT_SAPMM06E_012  (Check Customer-Specific Data Before Saving) is used for custom field not for SAP std field.
    Hope this helps.
    Arif Mansuri
    Reward the points if answer is helpful.

  • "Error in Process" for POs after changing Tax codes and Vendor address

    All,
    We are in extended classic scenario and we have 2 POs with status "Error in Process"
    PO 1:
    The PO was ordered with 3 line items, Confirmed, Inovoiced. Later our accoutnig team realized there should not be tax for one of the line item in the PO. So they created Credit memo and asked our purchasing dept. to change PO from Taxable to Tax except.
    Now the porblem is, when PO chages to tax except in SRM, it is going to "Error in Process".
    What could be the reason?
    PO 2:
    The PO have 10 line items and Confirmed, No invoice is generated.
    Now the Purchsing want to change vendor address in the PO, they changed the vendor address in the PO.
    Now the porblem is, when PO changes in SRM, it is going to "Error in Process".
    I checked the RZ20 Traansaction in SRM, both POs have same errors:
    Backend application errors "Indicator for GR-based invoice verification used not allowed"*
    We removed 'Confirm Performance of Service/Goods Receipt' tick mark for the PO in SRM under follow on documents and it is throwing error saying it must be checked.
    Did any one got this error, what i need to check for this errors?. any help?
    Thanks
    Rams

    Hi,
    Once the PO is created . Confirmation made and invoice .Tax change will not be allowed.
    First reverse the Invoice.
    Cancel the confirmation
    then change in the P.O
    Do the Confirmation and invoice it will allow
    Regards
    G.Ganesh Kumar

  • Change of vendor address in PO

    Hello,
    Problem:  End user can change the Vendor address at the time of creation of PO.
    According to me the system fetch all vendor details in PO form vendor master.
    In reference of above issue i want to put a check in the system so that end user cannot able to change any information which comes in the PO through Vendor master.
    Thanks & regards
    Varun Bisaria.

    > Problem:  End user can change the Vendor address at the time of creation of PO.
    >
    > According to me the system fetch all vendor details in PO form vendor master.
    >
    > In reference of above issue i want to put a check in the system so that end user cannot able to change any information which comes in the PO through Vendor master.
    Hi,
    If you are referring to vendor address at the header, you can restrict this by suppressin gthe address field in IMG> Mat Mgt> Purchasing> PO> Define Screen Layout @ doc level > and double click ME21N and double click on Reference data header set the field Address as Display which will solve your problem
    Regards
    Shiva

  • Address Change in Customer/Vendor Master upon creation or change Master

    Hi Expert,
    We need to change some Address  fields( *ADR6-SMTP_ADDR , ADRC-DEFLT_COMM, KNA1-TELTX, KNA1-TELX1*) in Customer Master based on some condition while creation/change the Master Data. I need to do same fields in Vendor Master as well. 
    I tried all the Possible exit Here.
    If you know a Proper exit /BADI or one possible solution to solve my problem?
    If anyone can provide any BAPI name which is used to Modify any customer/Vendor address will be very much helpful as well.
    Thanks in Advance for your help.
    Suman Adhikari

    Hi Kesav,
    For customer  BAPI_"CUSTOMER_CHANGEFROMDATA" and "BAPI_CUSTOMER_CHANGEFROMDATA1" both Sales Organization is a required filed. Here we need to change some fileds(standard communication filed , Customer Email address, and Telex No)  based on telex filed of customer for Customer irrespective of Sales Organization or any other constraints. The same requirement is for Vendor as well. If there is any proper exit/badi where KNA1 and address structure ADRC,ADR6 etc are available that will we good.
    I just need to modify some address fields for customer as well as vendor. If there is any BAPI for change address(customer/Vendor) then that will also be helpful.
    Suman Adhikari

  • Prevent changes to ship-to and vendor address in Process Purchase Orders

    Hi SRM experts,
    I have recently used BBP_UI_CONTROL_BADI to affect the displays of fields and buttons in the shopping cart. I now need to change the displayed fields in the Process Purchase Order screens (Vendor Address and Ship-To address) to prevent edit. I've debugged in method BBP_PO_UI_CTRL and see screens 1000, 2200... 3000 etc. but can't see the screens and fields I need to affect. I suspect that I might be at the limitation of using the BADI or am I looking in the wrong place?
    Can anyone help?

    Hey,
    i believe you have filter for shopping cart (BUS2121) in BBP_UI_CONTROL_BADI. you need to do a seperate implementation for PO (BUS2201), Which should/must work for your requirement.
    Cheers, Renga
    **Award points for helpfull answers**

  • I need to be change plant customer and Vendor address as per plant setup.

    Hi
    I need to be change plant customer and Vendor address as per plant setup.
    Pls tell me the t-codes and process configuration to setup these changes.
    I have already change Plan & shipping point address in configuration.
    Regard
    vicky

    Hi Vicky ,
    Use OX10 for Changing Plant Address.
    For Customer - XD02
    For Vendor Add : XK02.
    Regards
    Ramesh Ch

  • Change vendor address using bapi

    Hi all,
    How to change vendor address using bapi.
    The address,and vendornumber coming from XL file.
    Based on the vendor number I want to change the address.
    Please give me the example.
    regards,
    rakesh.

    Hi Vijay,
    Please help me in the following.
    As Vendor/Customer Master dont have all the address fields ( like Street4-5), we use FM BAPI_ADDRESSORG_SAVEREPLICA to overcome this problem.
    In my case i have created one Custom load program to upload address data using
    BAPI_ADDRESSORG_SAVEREPLICA and then LSMW project to upload rest of the data.
    In this case when i upload rest of the data by LSMW using BI standard program ( having NODATA indicator "/" in my source file for the fields already uploaded using BAPI above) , address data which uploaded through FM should get populate automatically (by concept of Central Address management) but in my case <b>for some of the Account Group it is not getting populated,</b> please suggest.
    regards
    Sonal

  • Updating a vendor table when address changes in infotype 6

    hello all,
    when an employee changes his personal information in the PZ02 service, it updates the infotype 6, as soon as the update is done it has to update the LFA1 or LFB! vendor table.
    is there a workaround for this
    BR
    venu

    thanks for the reply.
    whenever there is an address change in IT6 it should update the vendor table(for eg: if changes are done in PA30 and not from ess, so its kind of generic version that i have to create to update the vendor table either from ess or PA30).
    i am already using the HR_ESS_ADDRESSDETAIL and HR_ESS_ADDRESSLIST for changing the fields on the iview.
    (t77www_sc)and linking it to pz02.so what u mean is i can go ahead and write the code in the same module for updates.
    is this is the only way to do it, or we can do it by BAPI_address_change.
    I am trying to know all the different ways it can be done.
    a)can i use a BAPI if so which one?
    b) can i do it thru workflow.
    c)or user exit.
    Please help me out with details
    thanks
    venu

  • Vendor address not updated in Scheduling Agreement

    I have a peculiar problem where the vendor address is not being updated in all scheduling agreements. I have multiple SAs against a vendor. When i change the name of the vendor, the name changes only in one of the SA. All the remaining SA carry the old name of the vendor. I tested with another vendor on the test system and the names on all the agreements change as soon as I make the change in the vendor master.
    Does anyone have any explanation on why the system is behaving strangely?
    Thanks

    Hi,
    I am more surprised that the name changed automatically on the ones that DID change.
    I would not have expected this to update in this way. The main idea is that outline agrements can have different data to the master records because they are specific agreements and often relate to very specific data.
    If you wanted to change the address of a vendor it should NOT change the address of existinmg VSAs etc. automatically because the document is  a =fixed contract that is agreed between you and the vendor and should ONLY be changed manually.
    We had a similar question earlier today asking why the system does not change the short description on a contract when the short description on the material master changes. My reply was basically the same, it SHOULDN'T change it automatically because the agreement is a legal document and cannot be changed by just ONE of the parties involved.
    So I would be asking  why the one VSA changed automatically (and the ones in the test syste) not why the others didn't change.
    Just trying to lok at this from all angles.
    Steve B

  • Address change in customer master

    Hi Experts,
    I have cretaed sales order and processed it with one customer.Created Delivery and posted goods issue.
    After that I have changed the address of the customer and noticed that the adress is changed in the processed order also.
    I would to like to know what is base intension of this.
    Please help me out
    Thank you
    Regards,
    Nagi Reddy

    Dear Nagi,
    All Customer Address are stored in a central table - ADRC.
    Infact this ADRC is the Master Table of all addresses in system (It is used for addresses of Customer, Vendors, other Business Partner, etc)
    So any change you make in Customer Master Record in XD02 / VD02 it would change the entry in the ADRC & would show this effect in all the past documents also (like Sales Orders / Deliveries, etc).
    This is SAP standard & you cannot change it.
    Address details are only exception here. Rest all other data like payment terms, Condition record data are document specific. Meaning once the Document is created & saved any change in the Master Record would not impact the aleready processed documents.
    Alternatively you can change the Customer Address while processing Sales Order:
    VA02 - Double Click on Customer code & you will go to Header - partner screen.
    Here once again click on required Partner code & you will go to Address screen. Here you can change the address (which is proposed from Customer Master record). This address change in Sales Order would be applicable only for the particular Sales Order & its subsequent documents. The Master Record would not be changed.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • How to remove vendor address from T. Code S_ALR_87012103 - List of Vendor

    Hi Guru's
    There is one report called S_ALR_87012103 - List of Vendor Line Items, after executing this report it will give Vendors line item with vendors name & address with it.
    But I dont want to show the address of the vendors address in the out put?
    How can one remove this?
    Please help me.
    Thanks & Regds,
    Santosh Rothe

    Hii
    need to go for ABAPER help...
    or else u can try out by changing the layout try if it works
    sejal

  • MIGO/GR w/ PO and Validity Period Specific Pricing

    We have a business requirement to maintain validity period specific pricing on our outline agreements (Scheduling Agreements/Contracts).  The question is can receiving be controlled to pick the correct price based on delivery date and not when the goods are actually received?
    Example:
    Part A
    4/10/2014 to 4/20/2014 - $4.00
    4/21/2014 to 4/30/2014 - $5.00
    Scenario #1- Contract--> Release PO
    This scenario is working correctly due the release purchase order pricing is referenced based on when the purchase order is created.
    Scenario #2-Scheduling Agreement-->Delivery Schedule
    During the prototype, when setting up a validity perios specific price as above, the price is only taken into account at the start of the validity period.
    If the delivery schedule line says 4/18, but it's not received until 4/22, SAP will pull the 2nd validity period price instead of the 1st period.  Is there a way to ensure that the correct validity period gets pulled?

    I think its possible, though i did not check for Scheduling agreement but it works for PO
    Can you please explore Vendor master>Purchasing Data> Pricing Date Control field options
    It should help
    Thanks
    DD

  • What are the message types available for Vendor Address?

    Hi Everybody,
    I need to read the all the change pointers of Vendor Address using the function moudle 'CHANGE_POINTERS_READ'. To call this FM  I need to pass Address's Message Type. I am passing ADRMAS as message type. but i am not getting any records into change pointers internal table.
    Pls help me out by informing the message type of Vendor Address.
    Regards,
    Nagaraju Maddi

    Hi,
             The address group is in the segment E1BPAD1VL1-ADDR_GROUP.
    Check the table <b>TSAD7 for Address groups</b> (central address management)
    <b>Reward points</b>
    Regards

Maybe you are looking for

  • Need the status of billing document!!

    Hi experts, i am an ABAP guy. Can any one tell me how to get the status of the billing document. I need the table name and the field name that shows the status of billing document. I need to find the status of the billing document and after that i ne

  • Wireless Problem: Not able to enable it

    I am trying to get wireless working on my newly installed Arch Linux on my Acer  V5 Aspire Netbook. I am not able to hardware enable it via Fn+F3 key combination. I don't know whether I have the corresponding Wireless Drivers installed.  I tried the

  • Boot Up & Network Setup Assistant

    After booting up my iMac, I always get the Network Setup Assistant dialogue box in centre of screen. Sure, i can close it down, but why does it come up in the first place? Bill

  • Does ipod work on a windows 98?

    Hey I was wondering if I could hook up my ipod to a windows 98. Im pretty sure I can download iTunes, but i thought i read somewhere that ipod needed win2000 or xp+. Please help! Ty

  • Display automatically dims after a minute or so

    Hi, My display dims after a couple of minutes of inactivity which can be quite annoying if you are viewing a movie etc, I cant find the setting which controls this, any clues people J