DELETE SAP Method Lock the user









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

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


Parameters of Method DELETE

.

NameTypeData TypeDescriptionDefault Value
BSIDImportingTYPE
SMUM_BSID
Business Service Id
FLT_VALImportingTYPE
SMUM_APPL
Business Service application identifier
TPIDImportingTYPE
SMUM_TPID
Trading Partner ID
USERNAMEImportingTYPE
BAPIBNAME-BAPIBNAME
User Name in user master record
RETURNExportingTYPE
BAPIRET2_T
Return Parameter Table



Exceptions of Method DELETE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_SMUM_USER_DELETE.
DATA: lv_BSID TYPE SMUM_BSID,
lv_FLT_VAL TYPE SMUM_APPL,
lv_RETURN TYPE BAPIRET2_T,
lv_TPID TYPE SMUM_TPID,
lv_USERNAME TYPE BAPIBNAME-BAPIBNAME,
lv_other TYPE c.

CALL METHOD lo_class=>DELETE(
EXPORTING
BSID = lv_BSID
FLT_VAL = lv_FLT_VAL
TPID = lv_TPID
USERNAME = lv_USERNAME
IMPORTING
RETURN = lv_RETURN ).

Links to Related Class(s)

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