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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IR_LOGSYS | Importing | TYPE /ECRS/LOGSYS_RT | Range Table for Source System | |
| IV_POIID | Importing | TYPE /ECRS/POIID | Provider of Information ID | |
| IV_RPMON | Importing | TYPE /ECRS/RPMON | Declaration Month | |
| IV_RPYEA | Importing | TYPE /ECRS/RPYEA | Declaration Year | |
| EV_NUMBER_OF_ENTRIES | Exporting | TYPE I | Number of Entries Deleted |
Exceptions of Method DELETE_ENTRIES
I
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