BAPI to change customer contact detials

Hi All
I am trying to change the value of field ADR2-R3_user with a custom FM , this field is the mobile flag and updated internallly when there telphone number is mobile on the screen tcode VAP2.  FM should be able to change the flag .
Thanks in advance .

Sorry Vinay,
The standard BAPIs- BAPI_CUSTOMER_CHANGEFROMDATA & BAPI_CUSTOMER_CHANGEFROMDATA2
only allow change of Telephone number and not mobile number.
You should probably use BDC or LSMW to update this field.

Similar Messages

  • BAPI for Change Customer

    Hi Experts,
    We have a requirement to change the details of a customer. We are using BAPI, "BAPI_CUSTOMER_CHANGEFROMDATA". Change is happening when we try to change details like name, But when we try to change 'country' field, we are getting error saying  "Personal address diffrent from comapany address; change not allowed"..... Can anybody help me with this,,, or can somebody suggest any other BAPI for change customer....
    Thanks and regards,
    Mahendra R

    Hi Mahendra,
    CHek the link below[using BAPI_CUSTOMER_CHANGEFROMDATA1;

  • Function Module or BAPI for Change Customer Master in Background

    Hi,
    I would like to ask is there any Function Module or BAPI to change the Customer Master in the Background
    Thanks.

    Hi
    Please check the following link
    [FM|http://help.sap.com/saphelp_nw04/helpdata/EN/8f/53b67ad30be445b0ccc968d69bc6ff/content.htm]
    [FM for BAPI|Is there a BAPI or Function module can create a Customer Master record?]
    Hope this link helps you
    Regards,
    Rajani

  • Fm or BAPI for Change Customer: Sales area data

    Hello All,
    I need to change tax classification in Sales area data of Changing Customer ( transaction XD02 ).
    Function BAPI_CUSTOMERCRM_CHANGE looks like is ok for this, but I've try it and is not working, maybe i'm forgeting something or is not proper for this.
    Do you know a function for this or an sample with BAPI_CUSTOMERCRM_CHANGE ?
    Note: Function must not be for online store and Internet Sales.
    Any help will be appreciated and rewarded.
    Thank you a lot!
    Bogdan

    Hi again,
    Not the BAPI COMMIT was the problem,
    But I found FM SD_CUSTOMER_MAINTAIN_ALL, which is working realy fine.
    All the bests!

  • BAPI for deleting customer contact details.

    Hi,
    I need a BAPI or FM to delete customer contact details.
    Kindly help.
    Regards,
    Sumit

    Hi Sumit,
    try this
                     BAPI_CONTACTCRM_DELETE
    reward point if useful.

  • BAPI to change customer in XD02 tcode

    Hi
    Can you please let me know the BAPI responsible to change the customer throgh XD02 tcode?
    Regards,
    surya

    HI,
    Please check    BAPI_CUSTOMER_CHANGEFROMDATA or    BAPI_CUSTOMER_CHANGEFROMDATA1.
    Hope this helps.
    Regards,
    Sachin

  • Changing customer contact information and seeking help from customer care centre

    Over the past few days I have tried to change my email contact address for CC.  Have made the change and pressed the button to have a verification email sent.  Nothing gets to me.  The account works and nothing is showing up even in my junk box.  Have then tried to contact the Customer Care Centre...  What product? Adobe Creative Cloud.  What topic do you need help with? > Sorry. No data available for this product at this time.  Catch 22.  One might be tempted to say "typical".  Not that tempted yet.

    Hi Kelli, 
    It was wonderful of your mother to purchase a Samsung Smart TV for you and I hope that you had a wonderful trip! It is truly disheartening to hear of the damage you state you found when you returned from your trip out of the country. 
    Per our Return & Exchange Promise and assuming your mother falls under the standard 15 day return and exchange period, unfortunately we wouldn't be able to exchange this TV due to it being beyond the 15 day timeframe, but also as damaged items are considered nonreturnable. I apologize if this news causes you any dismay. 
    With that said, if your mother should like to reach out as she is the original purchaser, I would be delighted to discuss this further with her. She may either register with the forum to either send me a private message or by sending an email to [email protected] with "Attn: Tasha" in the subject to ensure it reaches me in a timely manner. 
    Respectfully, 
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • BAPI for Changing Customer Details

    Hi
    Pls tell me how to use "BAPI_CUSTOMER_CHANGEFROMDATA1".
    When I'm filling all mandatory fields, its showing message- Make an entry in all fields where required.
    Regards.

    Hi,
    Try
    [http://abap.wikiprog.com/wiki/BAPI_CUSTOMER_CHANGEFROMDATA1]
    Regards,
    Surinder

  • Change Customer Sold to using BAPI

    Hi Gurus,
                  I am using BAPI_INQUIRY_CREATEFORMDATA2 for creating inquiry and changing with wrapper around.
    I can create inquiry with above BAPI.
    With out creating any further document i want to change sold to party, How can i do that?
    Which structure and field i have to use to change Customer sold to party?, When i try to change i am getting error as customer sold to AG is not allowed to change. (I guess it is trying to change customer sold to in partners)
    Thank you
    Kris

    I got it

  • Updating table KNVK in customer contact person change

    Hi
    We have to update customer contact person data. We use BAPI_ADDRESSCONTPART_CHANGE but only ADRP table is updadeted. We would like to update table KNVK.
    Can we do that with some parameters with this bapi or do we need an other FM?
    Rgds

    Thanks but it is told that CUSTOMER_UPDATE should not be used directly in any custom program (Error in customer_update FM)

  • Extending sales order change BAPI and updating custom fields

    Hi
    i added 3 new fields into VA01/02/03 screen.i added at the header level in the additional data tab B area and appended them in VBAK table.
    i want to change these values using sales order change BAPI.i added the fields in the structure VBAKKOZ,VBAKKOZX,BAPE_VBAK,BAPE_VBAKX.
    may i know what else i need to do?should i move them anywhere with in the code or does the bapi take those values automatically using EXTENSIONIN structure?
    also can some one send me code to actually check if bapi is changing my values?
    if poss tell me how should i populate values into BAPI.

    After adding field in structures VBAKKOZ,VBAKKOZX,BAPE_VBAK,BAPE_VBAKX, create pair of name-value pair extensiot structure and value.
    Fill values as follows :
    Data :   ls_parex  TYPE  bapiparex,
                lt_parex  TYPE STANDARD TABLE OF  bapiparex.
    ls_parex-structure = 'BAPE_VBAK'.
    ls_parex-valuepart1+0(10) = Sales order no
    ls_parex-valuepart1+10(XX) = somevalue.  <---- Value for custom field no 1
    ls_parex-valuepart1+XX(XX) = somevalue.  <---- Value for custom field no 2
    APPEND ls_parex TO lt_parex  .
    clear ls_parex.
    ls_parex-structure = 'BAPE_VBAKX'.
    ls_parex-valuepart1+0(10) = Sales order no
    ls_parex-valuepart1+10(1) = 'X'. <--- checkbox mark for custom field no 1
    ls_parex-valuepart1+11(1) = 'X'. <--- checkbox mark for custom field no 2
    APPEND ls_parex TO lt_parex.
    Same pair for VBAKKOZ & VBAKKOZX
    Updating custom fields
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = Sales order number
          order_header_inx = 'U'   <--- U for update
        TABLES
          extensionin      = lt_parex[].
    Edited by: nkarwa on Oct 25, 2010 12:39 PM

  • A method or a bapi to add a contact to a customer

    Hi
    Today the only one solution I found is to attack the SAP table directly, but Is anybody know a BAPI to add a contact to a customer on SD ?

    Good day,
    Please check the following BAPI's
    BAPI_ADDRESSORG_CHANGE
    BAPI_ADDRESSORG_GETDETAIL
    Hope it helps.
    Regards and Best wishes.

  • Outlook 2013 with Exchange Server - Changed custom form for contacts is not shown

    Hello,
    Our infrastructure:
    Exchange Server 2010
    Outlook 2010
    Outlook 2013
    Windows 7 Pro, Windows 8 Pro and Windows 8.1 Pro
    The situation:
    We've used an old custom form for contacts, worked perfectly fine
    I've updated the form (adding some new custom fields and checkboxes) using Outlook 2013 and publishing the form (with a new name) to the Exchange folder
    I've set the form as default form in our contacts folder
    I've used this Script to set the new form for the existing contacts  and the name of the new form is saved correctly
    BUT if I open a contact in our Exchange contacts folder, Outlook 2013 (Outlook 2010) still shows the old form
    Steps I've taken so far:
    Cleared Outlook forms cache
    Repeated the above steps 1-4 in Outlook 2010
    Switched Cached Exchange Mode off and back on
    Allowed Scripts in Trust Center Settings
    Used a new clean Windows installation with a new Outlook 2013 installation
    Used different Exchange users on different systems, but some behavior when opening contacts
    I'm out of options I can think of, so maybe somebody else has some new view on this problem. 
    Thank you very much in advance!
    Greetings,
    Karl

    Hi,
    Is the Exchange folder in which the custom form is published available to all users?
    From the description, the script used to work for the old custom form, correct? Which version of Outlook did you use with the old custom contact form? Outlook 2010/Outlook 2013 or an earlier version? If you used the script with an earlier version of Outlook,
    we can't make sure it will still work with Outlook 2010/Outlook 2013.
    In addition we may also try creating a new contact form and test the steps to see if it will work.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to update Activity of Customer/Contact

    Hi All..
    I am Abap Consultant and i need develop a report to Update Activity for customer/contact using bapi FM.
    can you please tell me what is Activity of customer ? is it similar like Partner Functions?? where we menstioned this PF for a perticular Customer? any t code to change this partner function for a customer? is it my changes are update the table KNVP (customer Partner function table)?....
    any bapi function module is there to change/update the activity of customer?
    thank you in advance,
    Madhu.

    bapi function module is there to change/update the activity of customer?
    Edited by: madhubabu rao on Jan 29, 2009 12:13 PM

  • Create scripts of customer contact

    Hi all,
    My client wants to document details of customer contact done on phone. For this they want to create scripts can some body tell me what kind of script we will need & how it can be done in SAP.They want to do it in SAP but I think it will be done in CRM
    Thanks
    Nik

    Rajesh,
    All the code under those RFC function modules is commented out and they are now only empty shells. At least that is how they are in our system (which is not a CRM system).
    I know this information is not of much help to you. I recommend you to post a question in CRM forum asking how to change contact information using BAPI.
    Good luck.
    Sudhi Karkada
    <a href="http://main.nationalmssociety.org/site/TR/Bike/TXHBikeEvents?px=5888378&pg=personal&fr_id=10222">Biking for MS Relief</a>

Maybe you are looking for

  • Computer deleted itunes can i transfer from iphone 3gs to itunes?

    hello i am new to this site so excuse my total dumbness, my computer contracted a virus and itunes was deleted, computer is fixed now but i have no back up, can i transfer from iphone 3g to new itunes? it seems i can only transfer purchased items but

  • TEXT TO NUVI SAT NAV

    nuvi 310d unable to use text function with my nokia n73, use a nokia 6230i no problem nuvi sat nav texts to it via bluetooth. what needs to be downloaded to n73 for same text ability anyone any ideas....apart from a new phone

  • MM - Goods Receipts

    What is the meaning of Goods Receipts document? Whether it is an Inbound to R/3 system or an Outbound? Any pointers or blogs. Thanks

  • Copy Standard Text into CRM_ORDERH

    Hello, maybe anybody has an idea for my problem: I need an default text in a textscheme in the order-header. I can do this manually, I create a standard text within the textobject "TEXT" with SO10, and in the transaction I can copy the text with help

  • USB controller in Macbook Pro 15 (late 2013)

    I'm looking to buy a video capture box for capturing from various devices at up to 1080p @ 60 fps. This device seems a good candidate: http://www.solarisjapan.com/xcapture-1-usb-3-0-hd-capture-unit/ and reviews are pretty positive, it's also compatib