REPLACE_REF_OBJECTS SAP Method Replace References to Dependent Objects









Below is documentation, parameters and attributes of ABAP Method REPLACE_REF_OBJECTS within SAP class CL_ISU_BUPA_CLEAR_PROPERTY. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_ISU_BUPA_CLEAR_PROPERTY into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method REPLACE_REF_OBJECTS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method REPLACE_REF_OBJECTS

.

NameTypeData TypeDescriptionDefault Value
IS_OBJImportingTYPE
COMT_CLEAR_OBJ_KEY_RET
Data Cleansing: Key of Referencing Objects + Indic. Deleted
IS_SUPERIOR_OBJECTImportingTYPE
COMT_CLEAR_OBJ_KEY_EXT
Data Cleasing: Key Target Object + Indicator Deleted
IT_INSTLNSImportingTYPE
ISU_ANLAGE_TAB
Standard table with installation keys
IV_GPART_SOURCEImportingTYPE
GPART_KK
Source Business Partner
IV_GPART_TARGETImportingTYPE
GPART_KK
Target bus. partner
IV_PROPERTYImportingTYPE
E_PROPERTY
Property
CS_PROPERTYDATAChangingTYPE
BAPIISUPROPERTY
BAPI: Transfer Structure for Property Data



Exceptions of Method REPLACE_REF_OBJECTS

CANCELLED - Action was cancelled

Example ABAP coding


DATA: lv_CS_PROPERTYDATA TYPE BAPIISUPROPERTY,
lv_IS_OBJ TYPE COMT_CLEAR_OBJ_KEY_RET,
lv_IS_SUPERIOR_OBJECT TYPE COMT_CLEAR_OBJ_KEY_EXT,
lv_IT_INSTLNS TYPE ISU_ANLAGE_TAB,
lv_IV_GPART_SOURCE TYPE GPART_KK,
lv_IV_GPART_TARGET TYPE GPART_KK,
lv_IV_PROPERTY TYPE E_PROPERTY,
lv_other TYPE c.

CALL METHOD CL_ISU_BUPA_CLEAR_PROPERTY=>REPLACE_REF_OBJECTS(
EXPORTING
IS_OBJ = lv_IS_OBJ
IS_SUPERIOR_OBJECT = lv_IS_SUPERIOR_OBJECT
IT_INSTLNS = lv_IT_INSTLNS
IV_GPART_SOURCE = lv_IV_GPART_SOURCE
IV_GPART_TARGET = lv_IV_GPART_TARGET
IV_PROPERTY = lv_IV_PROPERTY
CHANGING
CS_PROPERTYDATA = lv_CS_PROPERTYDATA ).

Links to Related Class(s)

CL_ISU_B...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!