Update  address details of connection object

Hi,
I need a FM/BAPI to update address details of connection object.
I'm currently using ADDR_UPDATE and 'ADDR_MEMORY_SAVE'  I'm able to successfully update 9 address lines.
But not the telephone and fax number.
Hence I need a FM/BAPI to specifically update telephone and fax number of connection object.
Please suggest.
Thanks.
Priyanka Ashtekar

hi,
refer ti this link...
Updating Connection Object Address

Similar Messages

  • Populate County for Supplier Address of the Connection Object

    Hi
    Is there any way that we can populate county (Region) field for supplier address of the connection object i.e premise address (ISU) in SAP system? This is not a mandatory field hence is not filled up by customers (Business Partners).
    County here I mean is eg:
    Country is UK:
    County is Essex then Region code is "ES" etc..
    Please provide your valuable suggestions
    Note: There are billions of customers for which region needs to be populated.
    Thanks and Regards
    Ishi

    Any idea?
    I want to maintain County/Region for UK in Supplier SAP system of ISU..
    Thanks

  • Problem with BAPI_SALESORDER_CHANGE for updating address details

    Hi,
    I am trying to update address details using the bapi BAPI_SALESORDER_CHANGE. I am unable to update. I am populating only the required fields.
    Could anyone tell whats the problem with BAPI?
    Thanks & Regards,
    Yaseen Mahammad.

    Yaseen,
    Do check whether you have passed values to the internal table ORDER_HEADER_INX. You have to pass value to the update field as 'U' and all the fields which you have passed in the header internal table as 'X'.
    and  behave_when_error = 'P'

  • Connection Object and Street name

    Hi,
    Could anybody please specify the table name in which we can find the Connection object and Street name?
    Thanks and Regards

    Table EHAUISU you will have the connection object number.
    Then go to ILOA table give the connection object number in Functional loc. and execute it.
    You will get the address number. Then go to ADRC table to know the street name.
    You will not find the data in a single table.
    If you want to find then go to views
    V_EHAU_ADDRNR : IS-U Connection Object: Optimized Access for Address Number  "you will find address number for connection object.
    V_EHAUADR  :  You will get street name for connection object.
    Please let me know if you want any more details. if have any issues with answer then let me know the exact question for the same.
    Thank You.
    Regards,
    Siva

  • Need clarification  in usage of  premise and connection object

    Hi everyone,
       I  am working on a project and for that i have  do move in  for around 30 customers. i did up to move in . I assumed 5 customers from a single appartment and grouped  them. so i  used same connection object and premise for them. After move- in is done  i checked the Equipment numbers  generated for all the 5 in that group. The  address in equipment display(ie03) and also the customer display (XD03)  is overlapped  with the connection objects address. so it is showing same address for all 5 customers. After that i changed the premise but used the same conection object. But again the customer address is overlapped with the given connection object address. can anyone help me how to solve this if i have a scenario  like this :  5 customers from same appartment. how to create the connection obj and premise .
    Thanks,
    Archana

    Archana,
    Please have a look at the IS-U data model. The connection objects relates to the building and the premises to the appartments. The 5 customers/consumers/business partners live in their own premise. On premise level you may detail the address with such as "1st floor last door to the right".
    Devices (meters) are installed technically in a devlice location that can be is linked to premise and connection object. Finally the utility installation holds all billing relevant data while the contract is the link between the technical master data and the business master data. During a move-in the address list of a BP is completed by the address of the connection object (if customized).
    As you can see there are various factors affecting the address of a business partner and a installed device.
    Kind regards,
    Fritz

  • Duplicate check for Connection Objects in CRM

    Hi,
    I want to implement a duplicate check for connection objects in CRM. The duplicate check shall use the address of the connection object and perhaps additonal attributes. I have found a duplicate check for business partners using the basis address service and TREX as index pool. However, I couldn't find a similar functionality for connection objects. Does somebody know:
    1) How to implement a duplicate check for connection objects which is based on the address of the connection object?
    2) Is there a way to use the TREX-based duplicate check which is integrated into the basis address service for connection objects?
    Thanks in advance!
    Best regards,
    Frank

    I also have a requirement to check for duplicate address at connection object level and we are using SAP data servies to validate the address. Can anyone share their experience.

  • Up date address details

    Hi all,
    i am facing a problem to update address details such as name1 and name2.
    more clear : already adress number exist and i need to up date name1 and name2 fields only .
    if any body have idea pls share with me.
    this details belongs to equipment.
    thanks,
    saleem . shaik

    Hi,
    Table is ADRC.
    data itab like standard table of ADRC.
    get all the info into it.
    loop at itab.
    update ADRC from ITAB.
    if sy-subrc = 0.
    commit work.
    else.
    roll back.
    endif.
    endloop.
    This is the example hoe u should approach.
    Thanx.
    if this helps u reward with points.

  • 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

  • (UIX XML) Sharing Connection objects between BC4J and custom java.

    If I have a UIX XML page that contains some BC4J application modules, then in the event handler I call [public static EventResult handleMyEventEvent (BajaContext context, Page page, PageEvent event..) ], which in turn calls some java classes I have written that take a java.sql.Connection object and access the database doing some updates/inserts with this Connection object (via JDBC)....HOW CAN I USE THE SAME TRANSACTION AS WAS USED IN THE BC4J APPLICATION MODULE...i.e. CAN I SHARE THE CONNECTION OBJECT BETWEEN BC4J AND MY OWN JAVA CLASSES THAT USE JDBC?
    What are the best ways to share such a transaction?
    Thanks,
    Paul.

    Would it be easier to use a custom method on the bc4j Application module?
    Take this scenario...
    1. User opens UIX XML web page which opens a bc4j App Module..it has a VO based on all employees.
    2. User presses the add button and a new employee is created (using the bc4j App Module).
    (Notice: no commit yet!)
    3. User presses the submit button...fires event REVIEW_SALARY.
    4. This event is 'handled' in the event section of the UML XML...it calls:-
    public static EventResult handleREVIEW_SALARYEvent (BajaContext context, Page page, PageEvent event)...
    5. I now want to call a java class I wrote that computes an employees new salary and updates the employee record with this new salary. This update will fail unless it is part of the same transaction as the one used by the bc4j App Module (that inserted the new employee).
    How best to proceed from here?
    How about having a method on the bc4j App Mod's VO called 'reviewSalary'? Calling this would use the same transaction? I could then call my java class from within the VO's method? However do I still have the same problem in that my java class expects to be passed the connection object?
    The approach you suggested previously seems a touch dangerous....in that these are not 'publically exposed'...and a new release of JDev may break my code.
    Thanks,
    Paul.

  • Always stuck at Updating Address Book

    We are in a migration process from Exchange 2010 to Exchange 2013, now users WHO are migrated to Exchange 2013 cannot download address book manually, stays on processing and bar never starts at all, waited for 2 hours but the same. The other thing is that
    at the bottom of Outlook it's always like this "ALL FOLDERS ARE UP TO DATE, UPDATING ADDRESS BOOK. CONNECTED TO: MICROSOFT EXCHANGE" and this is for all users that have been migrated to Exchange 2013. Did I miss some configuration somewhere for the
    address book. Where can I start to troubleshoot this issue.

    Running the command comes back empty, but I have the  "SystemMailbox bb558c35-97f1-4cb9-8ff7-d53741dc928c"
    Get-Mailbox -Arbitration | where {$_.PersistedCapabilities -like "*oab*"} | ft name,database<o:p></o:p>
    Hi,
    According to your further description, I noticed that there is no Arbitration mailbox which is responsible for OAB generation in your Exchange server.
    Please run the following command to check all Arbitration mailboxes:
    Get-Mailbox -Arbitration | fl name,servername,Database,PersistedCapabilities
    If the mailbox "SystemMailbox bb558c35-97f1-4cb9-8ff7-d53741dc928c" is listed here, we can enable OABGen for it:
    Set-Mailbox -Arbitration -Identity "SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}" -OABGen $true
    Alternatively, we can create a new organization mailbox for OAB generation:
    New-Mailbox -Arbitration -Name "OAB Mailbox" -Database “Mailbox Database 2044052308” -UserPrincipalName
    [email protected] -DisplayName “OAB Mailbox”
    Set-Mailbox -Arbitration -Identity [email protected] -OABGen $true
    Then run Update-OfflineAddressBook cmdlet or restart the Microsoft Exchange Mailbox Assistant service on Mailbox Role to force OAB Generation.
    Regards,
    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]
    Winnie Liang
    TechNet Community Support

  • Updating Connection Object Address

    Hi all,
    Is there any  FM/BPAI to update Connection object address.
    with regards,
    Sumanth

    Hi all,
    I am facing an issue while using the FM: ISU_S_CONNOBJ_CHANGE to update a connection object address in the following manner:
    CALL FUNCTION 'ISU_S_CONNOBJ_CHANGE'
          EXPORTING
            x_haus         = wa_conobj_update-tplnr
            X_UPD_ONLINE   = co_flagged
            x_no_dialog    = co_flagged
            x_auto         = lwa_address
            X_OBJ          = lwa_object
          IMPORTING
            y_db_update    = lwa_update
    I am filling the values in the structures: lwa_address-addr_data & lwa_object-addr1_data_new. (Just filling 6 fields: CITY1, POST_CODE1, HOUSE_NUM1, HOUSE_NUM2, STREET & COUNTRY).
    I am also using COMMIT WORK (at sy-subrc = 0). Still this FM is not updating the values.

  • Updating to connection object in JDeveloper

    Dear all,
    For my BC4J project, I have a connection by name CorrosionConnection. This connection is set with username=cer2265, password=cer2265,sid=cer, hostname=196.15.40.23,port=1521.
    So for so good. Application is working fine and I can happily make any transaction.
    This is my default setting. Suppose I have placed a text file as follows.
    username: cer2265
    password: cer2265
    sid: cer
    hostname: 196.15.49.23
    port: 1521
    Let us name this file as connection.txt. When ever application starts application should read this file and should update CorrosionConnection object with this information.
    Now suppose If i need to change the ip address from 196.15.49.23 to 196.15.49.22 what I need to do is the following..
    username: cer2265
    password: cer2265
    sid: cer
    hostname: 196.15.49.22
    port: 1521
    Thus a type of dynamic connection object is now created, where I can even change the username, password , sid and port.
    I don't know how to do this. Reading the file can be done by any filestream object. Updating the connection object is the problem.
    Can any one help me in this regard,
    Thanks in advance.

    If you need your connection to be dynamic because of DHCP you could use "localhost" or "127.0.0.1" for your IP address if your database server is on same machine as application server.
    Otherwise I would recomend reading BLOG from Steve:
    http://radio.weblogs.com/0118231/2004/08/11.html
    and Oracle documentation:
    http://www.oracle.com/technology/products/jdev/howtos/10g/dynamicjdbchowto.html
    and Google :)

  • Updating Connection object HOUSE_NUM1 in the system

    Hi,
    I need to update Connection object HOUSE_NUM1 IN THE SYSTEM.
    Can you suggest me  a function modjule fkor the same.
    The standard function module ISU_S_CONNOBJ_CHANGE says coding for no dialog will be included if required.
    Regards,
    Jyothsna

    Hi Jyothsna
    I was a little bit surprised as well to see this comment instead of the necessary code for background processing.
    However, it is not overly difficult to create your own function to do so (if you don't want to change the classification).
    First have a good look through ISU_S_CONNOBJ_CREATE and create the new function with following calls:
    ISU_O_CONNOBJ_OPEN
    Here you have to populate the structures ADRC_STRUC and EHAU
    ADDR_ACCEPT_REG_DATA_ERROR  (optional)
    ISU_CONNOBJ_CHECK
    ISU_O_CONNOBJ_PREPARE_CLOSE
    ISU_O_CONNOBJ_ACTION
    ISU_O_CONNOBJ_CLOSE
    If you only want to change address information you could use functions from the central address management, of course.
    Yep
    Jürgen

  • Updating to connection object

    Dear all,
    For my BC4J project, I have a connection by name CorrosionConnection. This connection is set with username=cer2265, password=cer2265,sid=cer, hostname=196.15.40.23,port=1521.
    So for so good. Application is working fine and I can happily make any transaction.
    This is my default setting. Suppose I have placed a text file as follows.
    username: cer2265
    password: cer2265
    sid: cer
    hostname: 196.15.49.23
    port: 1521
    Let us name this file as connection.txt. When ever application starts application should read this file and should update CorrosionConnection object with this information.
    Now suppose If i need to change the ip address from 196.15.49.23 to 196.15.49.22 what I need to do is the following..
    username: cer2265
    password: cer2265
    sid: cer
    hostname: 196.15.49.22
    port: 1521
    Thus a type of dynamic connection object is now created, where I can even change the username, password , sid and port.
    I don't know how to do this. Reading the file can be done by any filestream object. Updating the connection object is the problem.
    Can any one help me in this regard,
    Thanks in advance.

    If you need your connection to be dynamic because of DHCP you could use "localhost" or "127.0.0.1" for your IP address if your database server is on same machine as application server.
    Otherwise I would recomend reading BLOG from Steve:
    http://radio.weblogs.com/0118231/2004/08/11.html
    and Oracle documentation:
    http://www.oracle.com/technology/products/jdev/howtos/10g/dynamicjdbchowto.html
    and Google :)

  • Update Address and communication  Details of BP

    Hi,
    Requirement is we need to update address and communication details of BP, please let us know relative BAPI for the same. Below roles has to be updated with given address and communication details,
    General Role
    Employee Role
    Help full information will be appreciated..

    Hi,
      For updation of address you can use
    BAPI_BUPA_ADDRESS_CHANGE.
    I guess you cannot update a role . You can only add new roles with BAPI_BUPA_ROLE_ADD .
    One more thing in address updation, Whatever fields are there in import parameter ( Address) you can update them even if they are not present in database.
    But in case of Tables( Communication details)  fields you can only update if the values are existing in database.
    Reward if helpful.
    Regards
    Sourabh

Maybe you are looking for

  • Cannot send emails from my corporate account with Smartphone Lenovo K920 (Vibe Z2 Pro)

    Hi All,  I bought a Smartphone Lenovo K920 (Vibe Z2 Pro). I have configured my hotmail account and everything is working perfectly. But for my corporate email account (with IMAP Settings), incoming emails are ok but when I try to send emails, I get t

  • Reading and Inserting Value in Long Raw

    Hi guys !! I have a table with 15 columns out of which RESUME column has data type long Raw. I want to copy this table to another table with selectd columns and validation. I want to check whether RESUME column is NULL. How to achieve it ? Similarly,

  • FBL5N Adding Dunning Procedure and Accounting clerk in layout option

    Hi Gurus Plaese help me to add the field Dunning Procedure and Accounting Clerk in the hidden field option for changing layout in FBL5N I have checked for the option of Define Special fields for finding and sorting data but it does not allow the file

  • FileUpload, Question about FormsDecoder.getFormsDecoderVersion

    Hello, I have successfully tested the FileUpload example provided in OTN. I would like to go a little further in my understanding, so I decided to manipulate the code... With my questions, you may think that I'm pretty new in java !! (that's true !!!

  • Setting default variant in QA32

    Hi Everybody, When the user goes to transaction QA32, the plant and other values which were there in his variant are replaced by other values. Please let me know how can a user set a variant as default so that whenever he comes to transaction QA32, h