Update equipment address

I'm an ABAP developer and I'm trying to update equipment address (especially coordinates) in an ABAP program. I tried to debug CRM Web UI application and implement the same code in my program but it doesn't work.
Basically I'm using function modules COM_IOBJ_LOCAT_ADDR_STORE, ADDR_SINGLE_SAVE and COM_COM_LOCAT_ADDR_SAVE_DB. Obviously I have something missing but I wasn't able to determine what's it.
[Screenshot of WEB UI where I try to update (Accounts & Products > Equipments > Address)|http://i54.tinypic.com/2ev6kk5.jpg]

Hi Ravi,
If you are able to do it with GenIL/BOL..that would be the best. However, we prefer to use BOL only from WebUI. So, I hope you are using this only in WebUI Components, and not from any BAdI's or Proxy's.
And the FM's/Classes should definitely work, from my experience.
Did you try tracing all the FM's/Classes and the sequence being called...by doing your exercise manually?
If not, you can try that...even your problem is solved, it would help you in future.
Thanks,
Sandeep

Similar Messages

  • User exit in Equipment Address management

    Hi,
    I am looking for a user exit in 4.6C within Equipment maintenance but none of the enhancements that I have looked at seem to have the address information available. I have looked at Enhancements IEQM0001 to 3 and ITOB0001 - 6.
    We have a requirement in a 4.6c environment to check that Equipment address information is only changed on a specific type of related types of equipment as it is a business requirement that all of these items should always have the same address. For example Equipment A, B and C are linked and must have the same address. Equipment A has the master address and when it's address is updated this must also be updated in Equipment B and C. In addition if someone tries to update the Address in Equipment B or C then an error message should be output telling the user that they must update this from Equipment A.
    I have not been able to find any enhancements that give you access to the address information however.
    Thanks for your help
    Ian

    Ian,
    First of all have a look [here|http://pjatkin.users.btopenworld.com/documents/PMCSUserExits.pdf] for the PM/CS enhancement options.
    You could probably IEQM0003 (Additional checks before equipment update) to check if the address has been changed by either using a suitable function module to look at the buffer data, or using field-symbols to call-in the data from the memory.
    PeteA
    [www.pjas.com]

  • Problem in Equipment Address Detail

    Hi ,
    i am saleem. shaik i am facing some problem in creating Equipment(IEO1) Through BAPI_EUQI_CREATE. this bapi will not have the features to update class ,Characteristic and address details(NAME in second scree) .i am able to update class and Characteristic details through other BAPI available. now i am facing problem in ADDRESS details i am not able to find any functions to update address details. If any body have IDEA to update these details please update me .
    my mail id [email protected]

    Hi,
    Please let me know what was the solution for updating the address. We are also using BAPI BAPI_EQUI_CREATE and want to upload address.
    Regards,
    Harveen

  • How do I update multiple addresses at once?

    I have a about 2 dozen entries in my address book for a particular company. Is there a way to update the address for all of the employees of that company at one time? It is very time consuming to go to each entry and type the address over and over again. The same would go for the fax number

    If you are not familiar with Applescript the simplest is probably to select them all (eg by putting the company name in the search box and selecting all found) export the selection as a vCard then delete the selection. Open the vCard in a text editor, do a global find/replace on the affected data, then import the vCard again.
    AK

  • How can I get the last updated email address of the customer ??

    Dear All,
    Please let me know, How can I get the last updated email address of the customer ??
    Also, I am trying to read CDHDR table where OBJECTCLAS is ADRESSE, however what value should be passed into OBJECTID field, looks like it is ADRNR with a Suffix BP.
    Please confirm me what value should be passed into OBJECTID field.
    Thank you.
    Anitha

    Hi Anitha,
      Check if this is something that helps you:
    Change documents in BAS
    CDHDR
    address type 1
    objectclass = ADRESSE             
    objectid = addrgroup + addrnumber     (ADRC-ADDR_GROUP + ADDRNNUMBER) !!
                     'BP  000xxxxxx'
    private address (address type 2)
    objectclass = ADRESSE2
    objectid =  'BP  000xxxxxx000yyyyyyy'   
                            persnumber+adrnr private
    address type 3
    objectclass = ADRESSE3
    objectid =  'BP  000xxxxxx000zzzzzzz'
                              persnumber +comp.address
    The above details is from the link: http://wiki.sdn.sap.com/wiki/display/ERPLO/LO-MD-BP
    Regards,
    Swarna Munukoti

  • I recently changed my email address and updated my password.  However, when I connect my iPhone 4 it defaults to my old email address which is no longer valid.  How do I get my phone to recognize my updated email address?

    I recently changed my email address and updated my password.  However, when I connect my iPhone 4 it defaults to my old email address which is no longer valid.  How do I get my phone to recognize my updated email address and how do I now change the iPhone 4 to recognize the new address?  I wish to delete all reference to the old address.  All help would be appreciated.

    Hi.
    Here is a procedure that should help.
    1. Go to "Settings"
    2. Go to "Mail, Contacts, Calendars"
    3. Click the account you don't want anymore
    4. Go to the bottom and click "Delete Account"
    5. Confirm the deletion
    6. Go back to "Mail, Contacts, Calendars" (if you're not there already)
    7. Add your new account

  • Update email address in vendor master using report RPRAPA00

    Hi All ,
    My requirement is to update email address in communication tab of vendor master .
    There is one report RPRAPA00 running in background to update vendor master except email .
    I could not able to see anything to update email address in user-exits available in report RPRAPA00.
    Is there any way to update email address using this report or any alternative way .
    Please help .
    Thanks and regards ,
    Sijin KP.

    You can use a couple of function modules from function group SZA0 to update the email address.
    Attached is a simple test program that inserts a new email address for a vendor whose address number is known (from LFA1-ADRNR):
    DATA: comtab TYPE STANDARD TABLE OF adsmtp WITH HEADER LINE.
    comtab-consnumber = '001'.
    comtab-flgdefault = 'X'.
    comtab-smtp_addr = 'email_address_comes_here'.
    comtab-dft_receiv = 'X'.
    comtab-valid_from = '00010101'.
    comtab-valid_to = '99991231'.
    comtab-updateflag = 'I'.
    APPEND comtab.
    CALL FUNCTION 'ADDR_COMM_MAINTAIN'
      EXPORTING
        address_number                       = '0000141306'
        table_type                           = 'ADSMTP'
      TABLES
        comm_table                           = comtab
    EXCEPTIONS
       parameter_error                      = 1
       address_not_exist                    = 2
       internal_error                       = 3
       OTHERS                               = 4
    IF sy-subrc NE 0.
      WRITE sy-subrc.
    ELSE.
      CALL FUNCTION 'ADDR_MEMORY_SAVE'
       EXCEPTIONS
         address_number_missing       = 1
         person_number_missing        = 2
         internal_error               = 3
         database_error               = 4
         reference_missing            = 5
         OTHERS                       = 6
      IF sy-subrc NE 0.
        WRITE sy-subrc.
      ENDIF.
    ENDIF.

  • Updating external address number and phone ID

    I want to update external address number and phone ID when i edit a BP.
    I found FM BUA_BUPA_BUT020_GET to read address data from buffer.. using this i can update external address number field. but i am not able to see phone related fields in buffer.
    how to update phone related fields in buffer ( in any of the BADI).

    Hi,
    You can get the information from the table ADRC   Addresses (Business Address Services)
    Field name for telephone number TEL_NUMBER
    For Email address
    SMTP_ADDR
    And you have the common field between these two tables
    ADDRNUMBER
    Thanks
    Ramakrishna Pathi

  • Updating email address in Sales order header partner address -VA01/VA02

    I got the requirement to update the email address in Sales order-> header-> partner address.
    The mail address will be picked from ZTABLE and updated in header partner address through user exit
    I cannot find any field for updating email address in partner address in user exit "MV45AFZZ"
    Is there any other user exit/option to update email address in header partner address of sales order?
    Thank You,
    GM

    Hi Rajesh,
    I agree with you but this Scenario is different.
    Just as you have mentioned the address change will not reflect in the Old Sales orders but it should in the new Sales orders right??
    But that is not happening..The Address was changed say two months back and the new address is not appearing in the Sales orders created these days say yesterday or today..
    In such a case,what is should I check to get the address updated??
    Please advice.
    Regards,
    Sophia Xavier

  • How to update equipment ship to party and sold party data

    Hi all,
    How to update equipment ship to party and sold party data? Is there any BAPI or FM?

    Hi Suresh,
    chech with the below
    PM_PARTNER_UPDATE      "Parner update
    ITOB_EQUIPMENT_READ_SINGLE   "read equmment data
    ITOB_EQUIPMENT_MODIFY_SINGLE   "update the parner data for the same equimpmet
    hope it helps you..
    Thanks!
    Edited by: Prasanth on Apr 14, 2009 6:30 PM

  • Script to Update SL Address Book with Lion Address Book?

    The only thing stopping me from switching from mobileme to icloud is my wife's imac, which is a little too old for Lion.  I have seen workarounds to sync calendars and mail, but not address books, via icloud.  Since it should be possible to export an address book from the Lion box and import it to the Snow Leopard box, perhaps that could be done automatically, once a day, using a script of some kind over my home network.  What would such a script look like?
    Any other ideas for periodically replacing/updating the address book on my wife's SL mac with the address book on my Lion mac(s)?

    The database probably won't do you any good: trying to replace it automatically is likely to fail as it's already in use.That at least was what I found.
    You could export the entire contacts list as a vCard, and import it into the other address book, though you would of course need to delete the entire list there first in order to prevent duplications.

  • HT4623 I am doing the IOS 7.02 update to address security. THe IPAD is now asking me to plug in to ITunes. When I do this, my MAC is saying that the IPAD is in recovery mode and my data will be lost.  What happened?!!

    I was doing the IOS 7.0.2 update to address security. The IPad is now telling me to plug in to Itunes. When I do so, my MAC is saying the IPad is in recovery mode and my data will be lost. What happened?!!  How do i fix?

    Something went wrong with the update and you are in Recovery Mode.
    Follow the instructions below to recover your iPad.
    http://support.apple.com/kb/ht4097

  • HT5312 forgot answers for security questions, my apple account has updated email address but the rescue email address  for account is old and not accessible - do not know how to update that address so i can authorize new devices...

    forgot answers for security questions, my apple account has updated email address but the rescue email address  for account is old and not accessible - do not know how to update that address so i can authorize new devices...

    Welcome to the Apple Community.
    Start here (change country if necessary) and navigate to 'Password and Security', reset your security questions using the link provided, you will receive an email to your rescue address, use the link in the email and reset your security questions.
    If that doesn't help, you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple throughiTunes Store Support.

  • App, email address is diferent from update email address, how can i make them the same ?

    app. email address is differant then update email address, how can i change my up date address to be the same ?

    The last time I received official word on this from Apple, I was told it is not possible to merge or otherwise change Apple ID's.
    Ours is not to reason why.

  • Update for Address Book

    When I downloaded the update 10.5.3, it said it would update my address book. I don't thin it did.
    It still says 2007 license and I can't sync with Google Contacts!
    Does anyone know what is wrong?

    The Address Book application in Mac OS X 10.5.3 now lets _*iPhone users*_ sync their Address Book with Google Contacts.
    If you aren't an iPhone owner, or you simply have reasons for not wanting to use this new solution, Syncman and Spanning Sync 2.0 (when it arrives) should still be viable options.
    Update
    General consensus from commenters says that if your machine has never touched an iPhone or iPod touch, you aren't likely to see this feature (just like Google stated).
    Do you have an iPhoto or an iPod Touch? according to the Google article his feature is only available if you do
    LN
    Message was edited by: LarryHN

Maybe you are looking for

  • Is there any way to access the files to be sent by XML bursting process?

    Hi All, I have following problem (11i, 5.6.3): - XML output will be created from report - bursting process will e-mail to multiple addresses after converting to PDF using RTF template - now I need to split the output again (like XML bursting does bef

  • I can't seem to switch off passcode... Any ideas?

    I was prompted a few days ago to create a passcode, and now I have to enter it every time I unlock my iPad. I'd like to switch this off but in settings the button to switch it off is not highlighted and cannot be clicked. Has anyone else had this tro

  • Issue w/SOA Suite Install 10.1.3.1

    I'm trying to install the SOA suite on Vista. I ran the install in admin mode and it was fine withe deploying the objects, however during the configuration part, I got an error on teh BPEL config. Failed at "could not get deployment manager" This is

  • Where are "Braid Game" save files stored?

    Hello! I had Braid installed in my os x snow. I then went to preferences and copy everything related to braid I found there. Now I've upgraded to Lion but have no idea where should I put those files in order for my new Braid.app recognize them as the

  • Upgrading from Forms 5.0 to 6i

    Hi, I have recently upgraded a Designer generated 5.0 Form to Forms 6i. I only upgraded the FMB and all the associated PLLs through the Forms 6i Designer, rather then regenerating through Designer 6i. There is a reason I need to do this, dont ask ;)