DELETE_OWN_NETOBJS SAP Method of class IF_GHO_OWNSHIP_OWN_NET_ASG_BO









Below is documentation, parameters and attributes of ABAP Method DELETE_OWN_NETOBJS within SAP class IF_GHO_OWNSHIP_OWN_NET_ASG_BO. 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 IF_GHO_OWNSHIP_OWN_NET_ASG_BO into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

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

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


Parameters of Method DELETE_OWN_NETOBJS

.

NameTypeData TypeDescriptionDefault Value
IT_NODE_IDImportingTYPE
GHO_T_SP_OWN_DOI_NET_OBJ_ID
DOI to network object linking ids
ET_INDEX_FAILEDExportingTYPE
/PLMB/T_SPI_INDEX_FAILED
Index of node ID for which no data is available
ET_MESSAGESExportingTYPE
/PLMB/T_SPI_MSG
Message
EV_FAILEDExportingTYPE
/PLMB/SPI_FAILED_IND
Failed Indicator



Exceptions of Method DELETE_OWN_NETOBJS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_GHO_OWNSHIP_OWN_NET_ASG_BO.
DATA: lv_ET_INDEX_FAILED TYPE /PLMB/T_SPI_INDEX_FAILED,
lv_ET_MESSAGES TYPE /PLMB/T_SPI_MSG,
lv_EV_FAILED TYPE /PLMB/SPI_FAILED_IND,
lv_IT_NODE_ID TYPE GHO_T_SP_OWN_DOI_NET_OBJ_ID,
lv_other TYPE c.

CALL METHOD lo_class=>DELETE_OWN_NETOBJS(
EXPORTING
IT_NODE_ID = lv_IT_NODE_ID
IMPORTING
ET_INDEX_FAILED = lv_ET_INDEX_FAILED
ET_MESSAGES = lv_ET_MESSAGES
EV_FAILED = lv_EV_FAILED ).

Links to Related Class(s)

IF_GHO_O...
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!