DELETE_DATA SAP Method Delete PDM Data









Below is documentation, parameters and attributes of ABAP Method DELETE_DATA within SAP class IF_EX_OIUP_ADMIN_WORKBENCH. 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_EX_OIUP_ADMIN_WORKBENCH 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_DATA can also be found below:

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


Parameters of Method DELETE_DATA

.

NameTypeData TypeDescriptionDefault Value
DATA_ITABImportingTYPE
ANY TABLE
Internal Table with Data
DBCONImportingTYPE
DBCON_NAME
Logical name for a database connection
TABNAMEImportingTYPE
TABNAME
Table Name
RECORD_COUNTExportingTYPE
SYDBCNT
DB operations, number of table lines processed
RETURN_CODEExportingTYPE
SYSUBRC
Return Value, Return Value After ABAP Statements



Exceptions of Method DELETE_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_OIUP_ADMIN_WORKBENCH.
DATA: lv_DATA_ITAB TYPE ANY TABLE,
lv_DBCON TYPE DBCON_NAME,
lv_RECORD_COUNT TYPE SYDBCNT,
lv_RETURN_CODE TYPE SYSUBRC,
lv_TABNAME TYPE TABNAME,
lv_other TYPE c.

CALL METHOD lo_class=>DELETE_DATA(
EXPORTING
DATA_ITAB = lv_DATA_ITAB
DBCON = lv_DBCON
TABNAME = lv_TABNAME
IMPORTING
RECORD_COUNT = lv_RECORD_COUNT
RETURN_CODE = lv_RETURN_CODE ).

Links to Related Class(s)

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