AFTER_DB_ACTION SAP Method Exit after INSERT/ UPDATE/ DELETE
Below is documentation, parameters and attributes of ABAP Method AFTER_DB_ACTION within SAP class IF_BADI_IUUC_REPL_WRITER_CLUST. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_BADI_IUUC_REPL_WRITER_CLUST 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 AFTER_DB_ACTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method AFTER_DB_ACTION
.| Name | Type | Data Type | Description | Default Value |
| IT_DELETED_CLUSTER | Importing | TYPE TABLE | Deleted Entries by Cluster Table | |
| IT_INSERTED_LOGICAL | Importing | TYPE IUUC_T_REPL_GENERIC_TABLE_INTF | Inserted Entries per Logical Table | |
| IV_APPLICATION | Importing | TYPE IUUC_REPL_APPLICATION | Replication Application | |
| IV_DBCON_NAME | Importing | TYPE DBCON_NAME | Logical name for a database connection | |
| IV_TABNAME_CLUSTER | Importing | TYPE TABNAME | Cluster Table Name | |
| IV_USED_TYPE_CLUSTER | Importing | TYPE TABNAME | Cluster Type Name | |
| RV_RC | Returning | TYPE SYSUBRC | Return Value |
Exceptions of Method AFTER_DB_ACTION
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_BADI_IUUC_REPL_WRITER_CLUST.
DATA: lv_IT_DELETED_CLUSTER TYPE TABLE,
lv_IT_INSERTED_LOGICAL TYPE IUUC_T_REPL_GENERIC_TABLE_INTF,
lv_IV_APPLICATION TYPE IUUC_REPL_APPLICATION,
lv_IV_DBCON_NAME TYPE DBCON_NAME,
lv_IV_TABNAME_CLUSTER TYPE TABNAME,
lv_IV_USED_TYPE_CLUSTER TYPE TABNAME,
lv_RV_RC TYPE SYSUBRC,
lv_other TYPE c.
CALL METHOD lo_class=>AFTER_DB_ACTION(
EXPORTING
IT_DELETED_CLUSTER = lv_IT_DELETED_CLUSTER
IT_INSERTED_LOGICAL = lv_IT_INSERTED_LOGICAL
IV_APPLICATION = lv_IV_APPLICATION
IV_DBCON_NAME = lv_IV_DBCON_NAME
IV_TABNAME_CLUSTER = lv_IV_TABNAME_CLUSTER
IV_USED_TYPE_CLUSTER = lv_IV_USED_TYPE_CLUSTER
RECEIVING
RV_RC = lv_RV_RC )
"Alternate coding for Method Call with returning parameter
lv_RV_RC = lo_class=>AFTER_DB_ACTION(
EXPORTING
IT_DELETED_CLUSTER = lv_IT_DELETED_CLUSTER
IT_INSERTED_LOGICAL = lv_IT_INSERTED_LOGICAL
IV_APPLICATION = lv_IV_APPLICATION
IV_DBCON_NAME = lv_IV_DBCON_NAME
IV_TABNAME_CLUSTER = lv_IV_TABNAME_CLUSTER
IV_USED_TYPE_CLUSTER = lv_IV_USED_TYPE_CLUSTER ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects