BAPI TO UPLOAD BP ADDRESS

Hi,
I have uploaded Business Partner address (city, country, Email) in Tcode BP based on Business Partner Id using the BAPI
called BAPI_BUPA_ADDRESS_ADD.
But the thing is I need to add Email in two places ie Communication and Address-Independent Communication blocks of BP tcode.
When using above BAPI (BAPI_BUPA_ADDRESS_ADD) it is adding email in E-mail field of Communication block only but I need to place that Email in two blocks of Email field.
Pls suggest me how to proceed or is there any BAPI which fulfils above requirement
Thanks
Chandu

Hi,
Could you pls anybody suggest any function module which can be done my requirement.
thanks

Similar Messages

  • BAPI to upload HR mater data

    Hi,
    We have a requirement to upload employee addresses from an excel file to table PA0006. We are using the standard BAPI , BAPI_ADDRESSEMP_CREATE for this purpose. All mandatory fields like PERNR,BEGDA,ENDDA and SUBTY are being passed to this BAPI.Also we have used appropriate function modules to enqueue and dequeue the PERNR. However we get a message 'Make an entry in all required fields'. Can somebody tell us what we might be missing out on?
    Thanks in advance!
    Regards,
    Nejuma Iqbal

    Hi,
    This sample code is from SDN.
    REPORT ztest MESSAGE-ID 00.
    DATA: BEGIN OF return_int OCCURS 0.
            INCLUDE STRUCTURE bapireturn1.
    DATA: END   OF return_int.
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
      EXPORTING
        number = '48'.
    CALL FUNCTION 'BAPI_ADDRESSEMP_CREATE'
      EXPORTING
        employeenumber = '48'
        validitybegin  = '20061231'
        validityend    = '99991231'
        addresstype    = '2'
        coname         = 'USA'
        city           = 'Atlanta'
      TABLES
        return         = return_int.
    LOOP AT return_int.
    ENDLOOP.
    IF whatever.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ENDIF.
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
      EXPORTING
        number = '48'.
    Kindly reward points by clicking the star on the left of reply,if it helps.

  • Using BAPI to upload Equipment Master (IE01)

    Hi,
    Can any one help to do below object...that i need for resume.
    Pls provide me compelete details with code or else give me guidelines  in detail to carrayout.....
    i should be thankful to you....
    •Using BAPI to upload Equipment Master (IE01). Fields that are uploaded are Equipment category, valid to date, Equip. Description, object type, Acquisition value, Acquisition date, Maintenance Plan, plan section, catalog profile. Input file is accessed from application server. Error log file is created at application server.
    with regards
    bheem

    If this is a onetime load, you can use LSMW to do this.
    Object 0400.  Must easier than writing a report from scratch.
    Albert

  • Bapi FM upload program

    Hi All,
    I am doing bapi fm upload program, when i run the program it shows the short dump error,
    i debug this program, the cursor is not move after tansaction_commit,
    it shows the FM: ps_commit. it s not run successfully,
    any one help for this error,
    (  CALL FUNCTION 'BAPI_PS_PRECOMMIT'                                                                " CALL FUNCTION MODULE
                  TABLES
                       ET_RETURN       = lt_ret2.
              CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'                                                          " CALL FUNCTION MODULE
                   EXPORTING
                      WAIT          = 'X'.)
    Thanks for advance help.
    Amudha

    Hi,
    You can delete a project definition using the BAPI "BAPI_BUS2001_DELETE". You must enter the name of the project definition that is to be deleted in "I_PROJECT_DEFINITION". Before the project definition is deleted, the following is checked:
    the project definition is deleted in the document tables. If the project has WBS elements, these are also deleted. If the project has other objects such as networks, activities and so on, the BAPI terminates and an error message is displayed. These must be deleted beforehand. The BAPI does not delete these automatically. The project definition is deleted as soon as a LUW (Logical Unit of Work) has been completed with the BAPI BAPI_PS_PRECOMMIT and COMMIT WORK. Only one project or one WBS element from a project can be processed at a time in one LUW. You cannot delete temporary objects. This means that if you create a project in an LUW, you cannot delete it immediately after creating it. You can delete it using this BAPI only after you physically create the project using the BAPIs "BAPI_PS_PRECOMMIT" and "COMMIT WORK".
    REgards,
    Nandha

  • Reg BAPI: "'BAPI_BASICPAY_CREATE" uploading to infotype P0008

    The following BAPI to upload the salary data to info type PA0008( BASIC PAY).
    This bapi is expects the table type amount with 4 decimals.
    Please let us know  any other bapi to upload the data to infotype 0008 or how to work with existing bapi. Sothat amount would be with 2 decimals raterthan 4 decimals.
    CALL FUNCTION 'BAPI_BASICPAY_CREATE'
          EXPORTING
            EMPLOYEENUMBER             = IT_PA0008-PERNR
            SUBTYPE                    = IT_PA0008-SUBTY
            VALIDITYBEGIN              = IT_PA0008-BEGDA
            VALIDITYEND                = IT_PA0008-ENDDA
            PAYSCALETYPE               = IT_PA0008-TRFAR
            PAYSCALEAREA               = IT_PA0008-TRFGB
            PAYSCALEGROUP              = IT_PA0008-TRFGR
            PAYSCALELEVEL              = IT_PA0008-TRFST
      NEXTINCREASE               =
      LOCALALLOWLEVEL            =
      PARTNERSHIP                =
      CURRENCY                   =
      COMPARISONPAYSCLTYPE       =
      COMPARISONPAYSCLAREA       =
      COMPARISONPAYSCLGRP        =
      COMPARISONPAYSCLLVL        =
      COMPNEXTINCREASE           =
            CAPACITYUTILLEVEL          = IT_PA0008-BSGRD
            HOURSWORKEDPERPERIOD       = IT_PA0008-DIVGV
      ANNUALSALARY               =
      CASEGROUPCATALOG           =
      CASEGROUP                  =
            CURRENCYANNUALSALARY       = IT_PA0008-ANCUR
      REASON                     =
      NOCOMMIT                   =
    IMPORTING
        RETURN                     = IT_BAPIRETURN1
       EMPLOYEENUMBER             = V_PERNR
      SUBTYPE                    =
      OBJECTID                   =
      LOCKINDICATOR              =
      VALIDITYBEGIN              =
      VALIDITYEND                =
      RECORDNUMBER               =
         TABLES
          <b> WAGETYPES                  = IT_WAGE</b>
    tHANKS
    Badari
    Help would be highly appreciable!

    PL note that HR_INFOTYPE_OPERATION is not RFC enabled.. you will have to wrap it around with a custom RFC in order to use it in palce of the above BAPI..
    ~Suresh

  • Bapi to upload data  for hrp1001

    Hi is there any standard Bapi to upload data in 1001.
    I know it can be done by lsmw or BDC ..but i wanted to aout any bapi

    Hi pratyush,
    Try using FM RH_INSERT_INFTY.
    Before RH_INSERT_INFTY, call function RH_PM_ENQUEUE, after RH_INSERT_INFTY, call function RH_PM_DEQUEUE.
    Regards,
    Dilek

  • Interface Using BAPI for Uploading shipment datas

    Can any1 send me the example code for Inbound Interface using BAPI for Uploading shipment datas.please kindly send me the programs which u using with BAPI

    Hi
    Except hiring (or new joinee) for all other actions you can use below Function Module.
    HR_INFOTYPE_OPERATION.
    ~~~Ganesh Kumar K.

  • Bapi to upload and download the leave details

    Hi all,
          Can  u please tell me a bapi to upload and download the leave details for the infotype 2001.
    Thanks.

    Hi
    Warning! The API methods "Delete," "Approve," "Create," and "Request," and "Change," as well as their corresponding RFCs:
    <b>bapi_absence_delete
    bapi_absence_create
    bapi_absence_approve
    bapi_absence_request
    bapi_absence_change</b>
    are <b>no longer valid</b>. Using these APIs can create inconsistencies in time data.
    Instead, use the corresponding API Methods "ManageDelete," "ManageCreation," and "ManageChange" for the Business Object BUS7007, as well as the following corresponding RFCs:
    <b>bapi_ptmgrattabs_mngdelete
    bapi_ptmgrattabs_mngcreation
    bapi_ptmgrattabs_mngchange</b>
    Regards
    Raj

  • BAPI to upload serial number master

    Hi Gurus,
    Is there any BAPI to upload serial number masters?
    Thanks in advance for your cooperation,
    Regards,
    Sudhir Dahake

    I found my question resloved.
    Actually, in previous version, the standard program has been modified by taking access key. When the upgradation happened, it got overwrited to the previous one. So, in recent version it is not appearing.
    Thanks.
    Nrusingha

  • Function or bapi to upload the lead questionnaire to lead partner portal

    hi all,
    Is there any function or bapi to upload the lead questionnaire that exists in the marketing leads-lead partner portal . The survey should get attached to the lead . I am able to create the lead though with the LDPO process by a function module .Any help on this will be very useful.
    Thanks in advance.
    Mithun

    Hi Bharani,
    I can answer two of your questions:
    2. No, with a BAPI you cannot see the screens during processing.  After it is called you can display the BOM and check that the data is loaded correctly.
    3. You can see the error messages of the BAPI by looking in the RETURN structure.  This will contain details of any error, warning, information, and success messages generated during the creation of the BOM.
    Cheers,
    Brad

  • Standard program / bdc / bapi to upload customer data.

    hi experts,
        i need standard program/bdc/lsmw/bapi to upload customer  amster data .

    Hi,
    Please check this links on how to use direct input program RFBIDE00.
    http://www.sapbrain.com/TOOLS/LSMW/SAP_LSMW_steps_introduction.html
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Regards,
    Ferry Lianto

  • Bapi for IA05: Please let me know if there is any bapi to upload Task list

    Hi,
    Please let me know if there is any BAPI to upload Task list (TCOde : IA05).
    Thanks

    you can try with below LSMW Batch Input method
    Object 0490 Gen.task list
    Method 0000
    Program Name IBIP
    Program Type B Batch Input
    or BAPI_ROUTING_CREATE
    refer below link
    Transaction IA05  -  Create general maintenance task list

  • Is there any BAPI for Upload Documents of WBS elements?

    Hi Guys,
                 Can anbody tell me is there any BAPI for Uploading Documents  of WBS elements ?
    Thanks,
    Gopi.

    hi
    check these BAPI
    Change WBS Elements Using BAPI                                                                               
    BAPI_BUS2054_CHANGE_MULTI           
    Create WBS Elements Using BAPI 
    BAPI_BUS2054_CREATE_MULTI                                                               
    Delete WBS Elements Using BAPI                                                                               
    BAPI_BUS2054_DELETE_MULTI                                                               
    Detail Data for WBS Elements                                                                               
    BAPI_BUS2054_GETDATA                                                                      
    Reading the GUIDs using the WBS Key
    BAPI_BUS2054_GET_GUID_FROM_KEY                                                     
    Reading the WBS Key using the GUIDs                                              
    BAPI_BUS2054_GET_KEY_FROM_GUID                                                                               
    Check Existence of a WBS Element                                                 
    BAPI_PROJECT_EXISTENCECHECK                                                                               
    Element                                                 
    thnks
    sitaram

  • Bapi for uploading opening balances for AUC

    Hi All experts,
    I want Bapi for uploading opening balances for AUC.
    Please help me its urgent.

    hi ,
    try
    BAPI_GL_GETGLACCBALANCE - closing balance of G/L account for a chosen year.
    BAPI_GL_GETGLACCCURRENTBALANCE - closing balance of G/L account for the current year
    BAPI_GL_GETGLACCPERIODBALANCES - Posting period balances for each G/L account.

  • Upload Vendor Address

    Hi,
      What is the correct way to upload the vendor address?? I tried to do this with BDC, but only the "Street1" field appear in BDC session.  I have found the document in program RFBIKR00.  It stated that a separate procedure is required : BAPI_ADDRESSORG_SAVEREPLICA .
    Regards,
    Kit

    Hi
    for existing vendors you can either use the transactions XK02 or MAP1 to add contacts... You can creade a BDC on either of those transactions.
    there's also a BAPI to create customer or vendor  "BAPI_PARTNEREMPLOYEE_CREATE".
    With Regards
    Nikunj Shah

Maybe you are looking for

  • Safari STILL crashing regularly

    I'm still having Safari crashing problems. It's getting ridiculous! It seems like the crash reports are always different. BTW, I've run the Apple hardware diagnostic on my system several times with not problems found. I've repaired permissions, delet

  • Previewing itunes music plays for 5 seconds and then stops

    Hi and Help!  When I attempt to preview a song on itunes, the song plays for about five seconds and then ends.

  • "Using" and SPRequest object was not disposed

    Just trying to understand what is happening here. I have an event receiver that currently is not working (yet to find the bug). The code is incredibly simple and uses 2 "using" statements as per best practise in order to ensure the the objects are di

  • Transportation Cost Split

    Hello friends!   Please, I would like to ask for some expert advice on the following issue:   My scenario is: I'm implementing SAP ERP (ECC 6.00) at a LSP (Logistcs Service Provider). The customer owns trucks and each truck is divided in two separate

  • Using certain websites?upgrade?

    Hi Im new to mac and still finding it all a tad confusing!!!when using certain sites for eg moonpig earlier when I went to buy a card it says I have an old version of the safari browser?Is there anything I can do about this without having to pay mone