BAPI to create conatct for a ERP customer

hi all,
can  we create contact for a customer using RFC or BAPI in  ERP,if yes please help me by providing the FM(bapi or RFC) details.
regards,
  goutham

Hello Goutham,
You can try BAPI_PARTNEREMPLOYEE_GETINTNUM and BAPI_ADDRCONTPART_SAVEREPLICA.
For mass updating of contact persons data it might be better to update such data from customer master transactions like VAP2 or XD02. The reason why I would not recommend to use BAPI_ADDRCONTPART is because it will not update the contact person table (KNVK) which is the main contact person table. VAP2 or XD02 will assure a consisten update on
both tables KNVK and ADRP. Therefore, you may use SXDA or LSMW or SM35 via batch input
Please have a look to notes 384462 and 306275.
If you still want to use directly Bapi_AddrcontPart-savereplica, please check the documentation or in the BOR (Transaction SWO1, Object BUS4003, method SAVEREPLICA and menu goto/documentation).
Hope this information could help you.
Thanks
Amber

Similar Messages

  • Create transaction for update a custom table

    Hi,
    I have a custom table Z****. What are all the steps to create a transaction for updating my custom table? I don't want to use SM30 anymore.
    Thank you.

    Create a Table maintainence through the maintainence generator.
    Open table in SE11, goto utilities => table maintainence generator.
    Once the generator is created,
    In the same screen of generator - Goto Environment => Transaction Code
    Select Transaction Code with Parameter.
    In the default values - Enter the Transaction as SM30 . Select skip first screen.
    In default values at the bottom
    Add
    screen field = VIEWNAME and value = Ztable name.
    screen field =UPDATE  and value = 'X'.
    Edited by: Pranu Pranu on May 19, 2010 2:36 PM

  • BAPI to create profile for material

    Hi all,
    Is there a BAPI to do following things:
    1. create Profile for material
    2. Assign new Class Type 300 for Material
    3. add variants class to have characteristics and update its values.
    Thanks in advance,
    Amruta

    Hi Amrutha,
    Please try this BAPI
    BAPI_UI_CREATE
    Regards
    Rasheed

  • Bapi to create delivery for purchase orders

    Hi Expets,
    what is the bapi to create a delivery for purchase orders.urgent.please do the needful
    kiran j

    Hi,
       Check below link.
    Re: BAPI for Inbound delivery
    Re: BAPI_OUTB_DELIVERY_CREATE_STO

  • BAPI to create output for invoice

    Hi
    I want to create an output (or repeat output) for an invoice, and been looking in SAP, on SDN, Google etc. for finding a BAPI  that can manage that.
    I have not been able to do that, so I have created a Batch Input - but it is really slow.
    Does anybody know if there is a BAPI to do that - and maybe an example.
    Thanks,

    Hi ,
    To create a Output or Send data to external system thorugh BAPI is not easy.
    Through application we can trigger output.
    On this cases we have changes pointers concept try to check it.
    This is the BAPI 'BAPI_INCOMINGINVOICE_CREATE' to create a Invoice.
    Prabhudas

  • How to create borders for photos in custom books?

    I have used a photo as a background for a page. Hence, I want the photos I placed on top of it to have a simple, thin, white border. Is there a way to do this? I am using the stock white photo layout and customizing it because I am going to print through Blurb. Any tips are appreciated.

    Hi there,
    Underneath the Size & Position settings, there's another settings box called "Photo Border." Set the width, and then click the colour box to change it to white.
    Hope that helps,
    GT

  • How can we create subtypes for om custom infotypes

    hi,
        I want the detailed procedure how to create Subtypes for Organzational management custom infotypes.
        Pls send me the detailed path how to create Subtypes for Org management.
    thanks & regards,
       Sekhar.

    Access transaction SM30/31 for table maintenance. Enter view name V_778U.
    Select maintain and enter the subtype for the custom infotype.
    Also remember to enter the time constraint for the subtypes mainatined in table T777Z.
    SPRO Path
    Personnel Management --> org management --> basic settings --> data model enhancement --> infotype maintenance --> maintain subtypes.
    Regards
    Ravikumar

  • Delivery for a particular customer

    Is it possible to create delivery for a particular
    customer on specific dates we want? How we will do it in SAP if possible? thanks

    Hi
    Further...if you wish to create deliveries on different future dates, one more alternative is to create a SCHEDULING AGREEMENT with delivery dates and quantities given in the schedule lines. Based on the delivery date, it automatically wil be added in the delivery due list.
    Thanks,
    Ravi

  • Query for non turn customer report in service module(Add-on)

    Hi,
    I want create  query for non turn customer report, that mean the customer who are not come for  last 6 months to our service workshop in service module(Add-on). this is a scenario. 
      SELECT T1.U_CardDate, T1.U_JCardNo,T1.U_TypeSrv,T2.U_VehReg,T2.U_PurchDt, T2.U_VehDesc, T2.U_VehModel, T1.U_KmsRead,   T1.U_BPCode, T0.CardName, T0.AddrType , T0.Building,T0.Block, T0.Address,T0.City,T0.ZipCode, T0.State1,T0.MailBuildi,T0.MailBlock, T0.MailAddres, T0.MailZipCod, T0.MailCity, T0.State2 ,T0.MailAddrTy,  T0.Phone1, T0.Phone2, T0.Cellular FROM [dbo].[OCRD]  T0 INNER JOIN [dbo].[@ALD_JOBCARD]  T1 ON T0.CardCode = T1.U_BPCode INNER JOIN  [dbo].[@ALD_VEHMAST]  T2 ON T1.U_BPCode = T2.U_BPCode WHERE T1.U_CardDate BETWEEN [%0] AND [%1] ORDER BY T1.U_CardDate.
    this query is get all  customer data who are not come to service workshop for last 6 month. i want to filter data who are not come last 6 months this year. kindly assist me
    thank you.

    Check this:
    SELECT Max(T1.U_CardDate) 'Lase Serve Date', T1.U_JCardNo,T1.U_TypeSrv,T2.U_VehReg,Max(T2.U_PurchDt) 'Last Purchase', T2.U_VehDesc, T2.U_VehModel, T1.U_KmsRead, T1.U_BPCode, T0.CardName, T0.AddrType, T0.Building,T0.Block, T0.Address,T0.City,T0.ZipCode, T0.State1,T0.MailBuildi,T0.MailBlock, T0.MailAddres, T0.MailZipCod, T0.MailCity, T0.State2 ,T0.MailAddrTy, T0.Phone1, T0.Phone2, T0.Cellular
    FROM [dbo].[OCRD] T0
    INNER JOIN [dbo].[@ALD_JOBCARD] T1 ON T0.CardCode = T1.U_BPCode
    INNER JOIN [dbo].[@ALD_VEHMAST] T2 ON T1.U_BPCode = T2.U_BPCode
    WHERE T1.U_BPCode NOT IN
    (SELECT DISTINCT U_BPCode FROM dbo.[@ALD_JOBCARD] WHERE DateDiff(DD,U_CardDate,GetDate()) < 183)
    Group By T1.U_JCardNo,T1.U_TypeSrv,T2.U_VehReg,T2.U_VehDesc, T2.U_VehModel, T1.U_KmsRead, T1.U_BPCode, T0.CardName, T0.AddrType, T0.Building,T0.Block, T0.Address,T0.City,T0.ZipCode, T0.State1,T0.MailBuildi,T0.MailBlock, T0.MailAddres, T0.MailZipCod, T0.MailCity, T0.State2 ,T0.MailAddrTy, T0.Phone1, T0.Phone2, T0.Cellular
    ORDER BY T1.U_CardDate

  • How to create scales for conditions for rebate agreements?

    Does anybody know any function modules or bapis to create scales for rebate agreement conditions.I want to create entries in konm table where scales for conditions get stored.Also pls tell me how to link contributory volume by programaticaly?
    Thanks in advance

    Part of my question is answered .I could find parameter in BAPI_PRICES_CONDITIONS to create scales for conditions.But do anyone have any idea how to link contributory volume to conditions? i have conditions and also contributory volume? can anybosy send me some material which explains the contributory volume..atleast functionally?

  • VF06 not creating invoices for some customers

    Hi,
    We generate billing documents every night. For some reason VF06 is not creating invoices for a particular customer. All these are Delivery related billings. I checked the Job log and VF06 has supplied the correct parameters to VF04. The billing index (VKDFS) is correct. There is no error in the Sales Order or Delivery. In fact when I use the simulation on VF04 I can see that SAP correctly displays this data. I was even able to create invoices using VF01.
    The billing index for this customer is getting accumulated and invoices are not being created. Any help will be appreciated. We are on ECC 5.0
    Thank You,
    sckr

    Check if some invoicing calendar is defined in the payer customer master, since the VF06 bills only the deliveries of the customers that have no invoicing calendar OR the the right date.
    regards
    Roberto Mazzali
    Pls. reward if helpful

  • BAPI to create customer master record

    Hi ,
    I was looking for the BAPI to create the customer master record in R/3. we are using the ERP 2005 system .
    I did find the BAPI but it will only creat the personal information of the customer .
    I was looking for a BAPI that will create the whole record of customer including the company code . sales area record .
    Hope someone knows abt this.
    I have to use this in a sync interface with siebel system
    Thanks
    Nikhil

    Hi Michal ,
    I had a loojk at this BAPi but this will only populate the customer personal data. we will have to make a refe to a existing cust to extract the company code data and the sales area data
    Thanks
    Nikhil

  • How to create a sales order for one-time customer

    Hi all,
    I have a requirement where in creating a sales order, I have to add the tax code for one-time customer. This is not the tax jurisdiction but it is a text field that you can see in Further attributes and it will store in VBPA3 table.
    My plan was create sales order first using SD_SALESDOCUMENT_CREATE or BAPI_SALESORDER_CREATEFROMDAT2. Then I used BDC of va02 for changing the salesdoc. But the problem is, we can't proceed because there's a message "TAX HAVE REDETERMINED"  that it doesn't included in recording a transaction.
    Another one is, instead of calling the standard bapi, I used BDC for VA01. Again, upon recording there was anothe message popped up "FREIGHT REDETERMINED". And it's not in the recording so we can't proceed.
    Would you know what field is for the tax code when I use SD_SALESDOCUMENT_CREATE or any standard bapi? Is there other way aside from calling a standard bapi or bdc?
    Points will be given..Thanks!

    Good afternoon Bella,
    We are in a project that exactly need this solution. Could yoy please explain me how you solve the issue ?
    Kind regards

  • Bapi to  create customer Master

    Dear all,
    As far i know there is no standard bapi to create a customer.  There i s standard fm used her is SD_CUSTOMER_MAINTAIN_ALL. I tried to create customer master using this and making the function module as remote enabled. i tried to created a  zbapi and use this fm inside of this. Please tell me if any idea on this.If any body knows   please help me in this.
    Regards,
    Madhu.

    Dear Alain
    Once again thanks for your reply. I passed customer no to extract data of a customer . But it is not extracting any data .
    I am thinking to fill all the fields of the table by seeing hoe it is extracting the data . can you give me some idea on this .
    DATA: ls_i_main   TYPE cmds_ei_main,
            ls_e_main   TYPE cmds_ei_main,
            lt_custs    TYPE cmds_ei_extern_t,
            ls_cust     TYPE cmds_ei_extern,
            ls_head     TYPE cmds_ei_header,
            ls_instance TYPE cmds_ei_instance.
      CONSTANTS: lc_obj_task TYPE cmd_ei_object_task VALUE 'M'.
      ls_instance-kunnr = '0000100001'.
      ls_head-object_instance = ls_instance.
      ls_head-object_task = lc_obj_task.
      ls_cust-header = ls_head.
      APPEND ls_cust TO lt_custs.
      ls_e_main-customers = lt_custs.
      CALL METHOD cmd_ei_api_extract=>get_data
        EXPORTING
          is_master_data = ls_e_main
        IMPORTING
          es_master_data = ls_i_main.
          "es_error       = pe_error.
    Regards,
    madhu.
    Edited by: madhurao123 on Mar 31, 2010 1:17 PM

  • BAPI to create BP as a customer

    Hello
    I am unable to find a relevant BAPI that can update following fields in customer view while creating the BP in customer based role:
    Company Code
    Reconciliation Account
    Record Payment History
    Please advise
    Rakesh

    Hi Rakesh,
    I dont think u need a BAPI for your requirement. If u have done the configuration of BP group with customer account group correctly, the system will automatically create customer in the background with the relevant fields as soon as u create a BP in REFX.
    Even for cutover BP u dont need to create customers just upload BPs and system will automatically create the customers no need to create them separately.
    Regards,
    Deepak

Maybe you are looking for

  • How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?

    How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?  Not losing the other screen would be useful as I would like to, for example, monitor my emails whilst watching a video o

  • Media files hidden after update 10.6.8 to Mavericks.

    Hello world, I'm running Snow Leopard 10.6.8 on an iMac 21.5" from 2010: 3.06 GHz Intel Core 2 Duo, 4 GB DDR3, 500GB. My problem came about when I updated from 10.6.8 to Mavericks. I downloaded Mavericks from the app store. When I tried to install it

  • Error when activate I/O: inconsistency DD - DB

    Hello gurus, I modified the IO 0COSTELMNT in Dev system, I added two custom IO as attributes. I modified the transfer rule and Communication Structure. I transported the modify with success and I load the master data in order to populate the new attr

  • Editing pdf documents

    Hi - I thought I could download Adobe, well I DID, but when it finished downloading it told me then that it wasn't compatible with Mac How or what do I do to edit a pdf document - or maybe I can't at all can I? Ta

  • Using Aperture 3 Vault storage

    Started to use Aperture 3 before accessing the Vault storage function. Bought an external hard drive to store my Aperture 3 photos. How do I now use the function of the vault storage within Aperture 3, and after getting the photos transferred to the