DELETE_ENTRIES SAP Method Delete Entries and COMMIT WORK









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

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


Parameters of Method DELETE_ENTRIES

.

NameTypeData TypeDescriptionDefault Value
IR_LOGSYSImportingTYPE
/ECRS/LOGSYS_RT
Range Table for Source System
IV_POIIDImportingTYPE
/ECRS/POIID
Provider of Information ID
IV_RPMONImportingTYPE
/ECRS/RPMON
Declaration Month
IV_RPYEAImportingTYPE
/ECRS/RPYEA
Declaration Year
EV_NUMBER_OF_ENTRIESExportingTYPE
I
Number of Entries Deleted



Exceptions of Method DELETE_ENTRIES

EV_NUMBER_OF_ENTRIESExportingTYPE
INumber of Entries DeletedNO_YEAR - Year not transferred

Example ABAP coding


DATA: lv_EV_NUMBER_OF_ENTRIES TYPE I,
lv_IR_LOGSYS TYPE /ECRS/LOGSYS_RT,
lv_IV_POIID TYPE /ECRS/POIID,
lv_IV_RPMON TYPE /ECRS/RPMON,
lv_IV_RPYEA TYPE /ECRS/RPYEA,
lv_other TYPE c.

CALL METHOD /ECRS/CL_WL=>DELETE_ENTRIES(
EXPORTING
IR_LOGSYS = lv_IR_LOGSYS
IV_POIID = lv_IV_POIID
IV_RPMON = lv_IV_RPMON
IV_RPYEA = lv_IV_RPYEA
IMPORTING
EV_NUMBER_OF_ENTRIES = lv_EV_NUMBER_OF_ENTRIES ).

Links to Related Class(s)

/ECRS/CL...
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!