CLEAR_REC_TRIG SAP Method The memorized triggered reconciliation is cleared
Below is documentation, parameters and attributes of ABAP Method CLEAR_REC_TRIG within SAP class CL_BS_SOA_INAPPSEQ_IN. 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 CL_BS_SOA_INAPPSEQ_IN 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 CLEAR_REC_TRIG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CLEAR_REC_TRIG
.| Name | Type | Data Type | Description | Default Value |
| IV_CONTEXT_HASH | Importing | TYPE BSSOA_IAS_SEQ-CONTEXT_HASH | Sequencing Context for Checks on App. level - Hashed Value | |
| IV_OBJ_TYPE | Importing | TYPE /SAPPO/DTE_OBJTYPE | ||
| IV_RECONCILIATION_PERIOD | Importing | TYPE BS_SOA_INAPPSEQ_RECON_PER |
Exceptions of Method CLEAR_REC_TRIG
CX_BS_SOA_EXCEPTION - Error message occurredExample 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: lv_IV_CONTEXT_HASH TYPE BSSOA_IAS_SEQ-CONTEXT_HASH,
lv_IV_OBJ_TYPE TYPE /SAPPO/DTE_OBJTYPE,
lv_IV_RECONCILIATION_PERIOD TYPE BS_SOA_INAPPSEQ_RECON_PER,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_INAPPSEQ_IN=>CLEAR_REC_TRIG(
EXPORTING
IV_CONTEXT_HASH = lv_IV_CONTEXT_HASH
IV_OBJ_TYPE = lv_IV_OBJ_TYPE
IV_RECONCILIATION_PERIOD = lv_IV_RECONCILIATION_PERIOD ).
Links to Related Class(s)
CL_BS_SO...Full list of available SAP object classes
Search for further information about these or an SAP related objects