CHECK_AND_DELETE SAP Method Deletes Partial Aspects of an Accounting Instance









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

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


Parameters of Method CHECK_AND_DELETE

.

NameTypeData TypeDescriptionDefault Value
I_MSG_HANDLERImportingTYPE REF TO
IF_FINB_MSG_HANDLER
Message Handler
I_SIMULATEImportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
RX_STOP_DELETIONReturningTYPE
BOOLE_D
Indicator



Exceptions of Method CHECK_AND_DELETE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_FINB_ACINST_CLEAN_UP_PARTLY.
DATA: lv_I_MSG_HANDLER TYPE IF_FINB_MSG_HANDLER,
lv_I_SIMULATE TYPE BOOLE_D,
lv_RX_STOP_DELETION TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>CHECK_AND_DELETE(
EXPORTING
I_MSG_HANDLER = lv_I_MSG_HANDLER
I_SIMULATE = lv_I_SIMULATE
RECEIVING
RX_STOP_DELETION = lv_RX_STOP_DELETION )



"Alternate coding for Method Call with returning parameter
lv_RX_STOP_DELETION = lo_class=>CHECK_AND_DELETE(
EXPORTING
I_MSG_HANDLER = lv_I_MSG_HANDLER
I_SIMULATE = lv_I_SIMULATE ).

Links to Related Class(s)

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