Vendor Email update via LSMW

Hi Folks,
Have a query regarding mass update for Vendor master email address.
LSMW does not seem to work for
a.) Batch Input recording
b.) Standard batch/Direct input.
Since Vendor email is not stored in LFA1 (rather in ADR6)
Also, the email id is maintained in ADR6, XK99/MASS do not work. Hence this option too is ruled out.
Any suggestions?
Regards.

Hello,
Any thoughts for mass update of Vendor master for email id?
Regards,

Similar Messages

  • PO Vendor Email ID is not getting updated in PO Output Tab

    Hello Experts,
    We are facing any issue with the PO vendor email id.
    Scenario: While creating the PO, we are mapping the vendor address (Like, Email, phone no, fax no .)From shopping cart which are custom fields of shopping cart.
    And these address details getting flowing to PO while creating PO.
    And we can see the updated address in partner details for the vendor.
    But the issue is coming as, this email id and fax no has get update in the PO Output tab also. This is not working for only email id, where as fax no id getting updated in the PO Output tab.
    Can you please check this and provide us a solution for this issue. Why only the email is not getting updated.
    I noticed that, there is FM module which gets address details of the vendor BBP_OUTPUT_PO_PARAMS_GET from the memory which is not getting the correct details
    Seeking your help.
    We will appreciate if somebody can provide us solution for this issue.
    Thank you,
    Bharathi.
    Edited by: Latha V on Feb 11, 2009 10:01 AM

    Hi check follwoing
    1. Set Delivery complete indicator at plant leve
    spro - mm --inventory mgmt ---Goods receipt --- Set delivery complete indicator
    2. Control field selection for MIGO to disable users from changing it.
    spro -- Materials Mgmt -->Inventory Mgmt -- Settings for enjoy Transaction -->Field Selection for MIGO
    and chek this link
    ["Delivery Completed" Indicator
    Regards
    Kailas Ugale

  • Vendor Payment notification via email

    The requirement is to automate the vendor payment. Right now using T-code F-51 & F110 for vendor payment(document types are BV & KZ).
    As soon as payment has been made in a particular vendor account. A email should be sent directly to vendor. The email address will be maintained in Vendor master.
    I want this to be automated.Can anyone help on this.
    Thanks
    anu

    Seached on other forums & got the solution as Business event for this activity exist.
    the steps are
    Step 1- Define Std communication method as SMTP (Internet mail) in vendor master 
    Step 2 – Maintain email address via FK02.
    Step 3 - T-Code BERP – Code to find Find event 00002040 – This is a Function called SAMPLE_PROCESS_00002040, copy with another name i.e. ZSAMPLE_PROCESS_00002040
    Step 4 – T-Code FIBF -> Option -> Product ->a Customer, Write product name at your choice (for example ZMAIL) and make it active.
    Step 5 – T-Code FIBIF -> Option ->Process Function (or Module) ->. A Customer.
    Process = 00002040
    Module Function = ZSAMPLE_PROCESS_00002040
    Product = ZMAIL (name of product define by you in step 4)
    it will automatically send mail to vendor provided SCOT is configured.

  • LFA1 Table fields are not updated via IDOC for particular vendors

    Hello,
    We have a scenario where some of the additional vendor fields in transaction xk02 should be updated via inbound IDOC.
    The IDOC segments have the corresponding vendor field values in it.
    For particular vendors, the updation is not taking place for those fields.
    What could be the possible reason. Kindly help me with this.

    Hello,
    that may be due to customizing.
    You should check with functional consultant.
    Regards

  • Receive Updates via eMail Doesn't Work

    My "Receive Updates via eMail" and "More System Details" options do not work anymore. They used to work about a couple of weeks ago.
    Does anyone else has the same problem or just me?
    Any suggestions/comments are much appreciated.
    Thank you.

    This is a known bug, it should hopefully be fixed next week when they update the software used by this forum.

  • Updating the Customer & Material Tax Classification via LSMW only

    We need to update the Customer and Material Tax Classification via LSMW only, in such a way that on the updation of the Tax classifications the Customer Master and the Material Master should be updated automatically.
    Please let me know if anyone has done the same also it would be really helpful if you can provide me the details.
    Regards,
    Arindam

    Hi,
    It's not clear your question to me.
    Do you want to update the Tax classification in the customer master & Material master?
    I did same, but with 2 different LSMW"s as there is not link between customer master & Material master.
    To update customer tax classification -
    In that you have to feed relevant customer numbers with sales areas & relevant tax classification for one LSMW.
    To update Material tax classification -
    In that you have to feed relevant material numbers with sales areas & relevant tax classification for different LSMW.
    Best regards,
    Anupa

  • Creating a sales order via lsmw.

    Hi,
    I am creating sales orders via lsmw. Each of these sales orders may contain any number of line items, i.e. sales order 1 might have 3 line items and the next sales order may have 10.
    How do I cater for this in lsmw. Is there a way of saying: when last line item, then start next sales order record?
    Any help appreciated.
    Regards,
    Warren.

    HI, I create LSMW for sales order. It is working fine for 9 line items. IF more than 9 line item, other item  is not updating. Pls provide me a solution. Thanks in Advance.
    my email is [email protected]

  • Problem in uploading Vendor Email through FK01/FK02

    Hello,
    I have to upload vendor master. Everything gets uploaded except the email of the vendor. I have tried several ways: Bapi's, Recording, LSMW etc but nothing seems to be working. Please let me know how to upload the email address of the vendor.
    Regards
    Ritesh

    Dear,
    Solved the problem. Below is a sample code.
    REPORT  z_vendor_email_upload LINE-SIZE 170.
    PARAMETERS: obj_id LIKE bapi4001_1-objkey DEFAULT '0000101625'.
    PARAMETERS: e_mail LIKE bapiadsmtp-e_mail.
    DATA: iad1vl TYPE bapiad1vl OCCURS 0 WITH HEADER LINE.
    DATA: iadsmtp TYPE bapiadsmtp OCCURS 0 WITH HEADER LINE.
    DATA: ret TYPE bapiret2 OCCURS 0 WITH HEADER LINE.
    DATA: adrnr LIKE bapi4001_1-addr_no.
    START-OF-SELECTION.
      IF e_mail CA '@'.
        REFRESH iad1vl. CLEAR iad1vl.
        iad1vl-name = 'XYZ'.
        iad1vl-name_2 = ABC'.
        iad1vl-sort1 = 'XZ'.
        iad1vl-country = 'SG'.
        iad1vl-langu = 'EN'.
        APPEND iad1vl. CLEAR iad1vl.
        REFRESH iadsmtp. CLEAR iadsmtp.
        iadsmtp-e_mail = e_mail.
        APPEND iadsmtp. CLEAR iadsmtp.
        REFRESH ret. CLEAR ret.
        CALL FUNCTION 'BAPI_ADDRESSORG_SAVEREPLICA'
          EXPORTING
            obj_type                          = 'LFA1'
            obj_id                            = obj_id
          OBJ_ID_EXT                        = ' '
            context                           = '0001'
          IV_CHECK_ADDRESS                  = 'X'
          IV_TIME_DEPENDENT_COMM_DATA       = ' '
         IMPORTING
           return                            = ret
           address_number                    = adrnr
          TABLES
            bapiad1vl                         = iad1vl
          BAPIADTEL                         =
          BAPIADFAX                         =
          BAPIADTTX                         =
          BAPIADTLX                         =
            bapiadsmtp                        = iadsmtp.
          BAPIADRML                         =
          BAPIADX400                        =
          BAPIADRFC                         =
          BAPIADPRT                         =
          BAPIADSSF                         =
          BAPIADURI                         =
          BAPIADPAG                         =
          BAPIAD_REM                        =
          BAPICOMREM                        =
          BAPIADUSE                         =
        IF ret-type NE 'E'.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          IF sy-subrc = 0.
            WRITE: /'Email Updated'.
          ENDIF.
        ELSE.
          WRITE: / ret-type, ret-message, ret-message_v1, ret-message_v2.
        ENDIF.
      ELSE.
        WRITE: /'Check Email Address. It is not correct'.
      ENDIF.

  • It's been 4 days and i still haven't received my free update via e-mail...did anyone have the same problem??

    I just recently bought a macbook pro and there's a free os update via email and i still haven't received my app code via e-mail and it's been 4 days i'm from phil. did anyone also have the same problem?

    I just got my Puma update code for my Cube, so I guess there's a bit of a backlog!

  • Vendor Email ID - SAP query

    Hi,
       I need to get the vendor email address along with other vendor details using query. I tried using LFA1 and ADR6 with link conditions on ADRNR. This gives me the email address but if there is no value for email address then the corresponding record is not shown. I can give it using the additional field feature but I am not allowed to maintain ABAP code in a query. Is there any other way to go about this?
    Thanks
    Aparna

    Hi,
    The table ADR6 only gets updated if you have maintained email id in the vendor master.If no email id has been maintained the table contains no entry for such Vendor masters. I dont think this can be done through ABAP program as well.

  • Mass changes for Vendor Email ID

    Hi All,
    Any one have idea how to change the vendor mail id through LSMW or any other way. If it's LSMW please advise i couldn't able to do changes through LSMW because in FK02 recording email id filed is not appearing.
    Please replay.
    Regards,

    Hi,
    In LSMW while doing recoding for FK02, while selecting the General and Co. Code Date, Select the Option u201CUse Central Address Managementu201D this will allow you do enter all the details related to Address.
    Regards,
    Sridhar Sha

  • PO created by means of Workflow  with out Vendor master updates

    Hi  Friends,
       I  have my scenario like this. I am working with Production server. When ever a request is created, it has to be sent for Vendor master data updates. then only a PO has to be created. The problem is the PO is created and the workflow is completed with out vendor master updates. When i check through SWI6  the step is just skipped. In the graphical view the steps vendor master update i.e tru  descion and other wait step types are disappeared. but in the original workflow the steps are present. can any one pls help me in solving this?
    Thanks,
    Archana.

    Hi  Arghadip,
      Thanks for the reply. The process is like this :
       when once request is created , it will fetch the email id of the approver from LDAP
       Then 2 approval steps are there. first approval is not mandatory. second is mandatory and its having terminatting event.
      After this Amendment descion will be there. on rejection of this descion it has to go and update vendor master. Until the amendments the process is going on. after  this  vendor master update will be there . it includes wait steps to  finish the update. then PO has to be created. but  from vendor descion to wait event the steps are disappeared when i checked  in SWI6 for that user. pls help me.

  • Mass change email by FK02/LSMW

    Hi Experts,
    I'd like to mass change the email address and Standard communication method in vendor master data by LSMW. But when I tried to record, the two fields are not found. I can change them directly by FK02.
    I suppose it's because the two fields are not in table LFA1. Then how can I change them by batch input?
    Thanks and regards,
    Eunice

    Hello,
    When you are doing the recording for FK02 or XK02
    Try to check
    Address Check box
    USE CENTRAL ADDRESS MANAGEMENT (if you do not check this check box, your email address and standard communication method will not be available)
    Hope this solves your problem.
    Regards,
    Ravi

  • I want IDOC for Vendor master updation ( XK01 &XK02 )

    Hi
    I want to do LSMW in IDOC method for this vendor updation.
    So I want IDOC for Vendor master updation ( XK01 & XK02 ).
    I want to do both create vendor and change also.
    Regards,
    Ravi
    Edited by: kandukuri ravi on Dec 1, 2008 2:56 PM

    Hi,
        For Vendor Master using IDoc's for LSMW,Use Message Type = CREMAS and Basic Type = CREMAS05.
    For Basic type 01,02,03...05 are versions which includes more fields in basic type so better use latest version.
    Hope it will help you.
    Regards,
    Sudhakar Reddy.A

  • Maintain Text in Infotype 0041 via LSMW

    Hi,
    Has anyone had success loading text into Infotype 0041 via lsmw?
    I am trying to create an lsmw to maintain text in infotpye 0041. I follow the route PA30, then when in IT0041 I go to edit and maintain text.
    The problem is that I get a syntax error because the field I am trying to update is RSTXP-TDLINE which is a length 0 and format type string. LSMW won't accept string fields so in the generated program for the lsmw the line reads: "tdline_01(000000) type c,". This obviously doesn't pass the syntax check.  
    Any help greatly appreciated.
    Regards,
    Warren.

    Hi
    I just tried to create a LSMW in my DEV environment. I didnt get any error when recording. I entered the text in IT41 without any issue. What I am getting in the source code is:
    RSTXP-TDLINE(01)               Abcde                TDLINE_01            ABAP Source Line
    Am I missing what you are seeing?
    Cheers
    Pramod

Maybe you are looking for