SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Updating Connection Object Address

Former Member
0 Kudos

Hi all,

Is there any FM/BPAI to update Connection object address.

with regards,

Sumanth

7 REPLIES 7

kevin_dewilde
Active Participant
0 Kudos

have you tried ISU_S_CONNOBJ_CHANGE?

Former Member
0 Kudos

Hi,

Please find the below FM to update the address in the connection object.

SU_PDSCR_CONNOBJ_ADDR_MODIFY

ISU_PDSCR_CONNOBJ_CREATE

ISU_PDSCR_CONNOBJ_MODIFY

ISU_PDSCR_CONNOBJ_SAVE

Regards,

SASI KUMAR.D

Former Member
0 Kudos

Hi,

Try using Bapi 'BAPI_FUNCLOC_CHANGE',

Regards

Neha

0 Kudos

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.

0 Kudos

Hi Guys,

I am facing the same problem. Usually all the FMs in ISU with '_S' work, but for connection object, I am not able to find any suitable way to modify it.

If anyone knows some other FM or how to make this FM 'ISU_S_CONNOBJ_CHANGE' work, please let me know.

Thanks & Cheers,

Ankit

0 Kudos

Hi,

there is missing functionality in ISU_S_CONNOBJ_CHANGE for no_dialog option. See code directly.

Lada

0 Kudos

Hi Nidhi,

I think you also need to populate the field City_Code in addr1_data_new structure because SAP internally allocates and identifies every City with the City Code.

Regards,

Puneet Jhari.