COLLECT_A1_A3_BANKTR SAP Method Posts Collected Differences for Agency Categories A1 and A3
Below is documentation, parameters and attributes of ABAP Method COLLECT_A1_A3_BANKTR within SAP class CL_BSP_BROK_DIFF_TP_COLLECT. 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_BSP_BROK_DIFF_TP_COLLECT 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 COLLECT_A1_A3_BANKTR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COLLECT_A1_A3_BANKTR
.| Name | Type | Data Type | Description | Default Value |
| BANKTR_POS_MODEL | Importing | TYPE REF TO CL_BSP_BROK_BANKTR_POS_M | ||
| DIFF_MODEL | Importing | TYPE REF TO CL_BSP_BROK_DIFF_TP_MAIN_M | ||
| IS_CONTREP | Importing | TYPE SITAGCYCONTREP | Structure for Container and Report Data | |
| IS_DIFFCONTROL | Importing | TYPE SITAGCYDIFFCONTROL | Return Structure for Handling Differences | |
| IS_ORGUNIT_AGENCY | Importing | TYPE SITAGCYORGDESCR | Organizational Units Description | |
| I_CALLER | Importing | TYPE COLLECTCALLER_ITAGCY | Caller for Posting Collection Transaction | |
| I_SEQNO | Importing | TYPE SEQNO_ITAGCY | Sequence Number | |
| RS_COLLECTIONINFORMATION | Returning | TYPE SITAGCYCOLLECTINFORMATION |
Exceptions of Method COLLECT_A1_A3_BANKTR
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: lv_BANKTR_POS_MODEL TYPE CL_BSP_BROK_BANKTR_POS_M,
lv_DIFF_MODEL TYPE CL_BSP_BROK_DIFF_TP_MAIN_M,
lv_IS_CONTREP TYPE SITAGCYCONTREP,
lv_IS_DIFFCONTROL TYPE SITAGCYDIFFCONTROL,
lv_IS_ORGUNIT_AGENCY TYPE SITAGCYORGDESCR,
lv_I_CALLER TYPE COLLECTCALLER_ITAGCY,
lv_I_SEQNO TYPE SEQNO_ITAGCY,
lv_RS_COLLECTIONINFORMATION TYPE SITAGCYCOLLECTINFORMATION,
lv_other TYPE c.
CALL METHOD CL_BSP_BROK_DIFF_TP_COLLECT=>COLLECT_A1_A3_BANKTR(
EXPORTING
BANKTR_POS_MODEL = lv_BANKTR_POS_MODEL
DIFF_MODEL = lv_DIFF_MODEL
IS_CONTREP = lv_IS_CONTREP
IS_DIFFCONTROL = lv_IS_DIFFCONTROL
IS_ORGUNIT_AGENCY = lv_IS_ORGUNIT_AGENCY
I_CALLER = lv_I_CALLER
I_SEQNO = lv_I_SEQNO
RECEIVING
RS_COLLECTIONINFORMATION = lv_RS_COLLECTIONINFORMATION )
"Alternate coding for Method Call with returning parameter
lv_RS_COLLECTIONINFORMATION = CL_BSP_BROK_DIFF_TP_COLLECT=>COLLECT_A1_A3_BANKTR(
EXPORTING
BANKTR_POS_MODEL = lv_BANKTR_POS_MODEL
DIFF_MODEL = lv_DIFF_MODEL
IS_CONTREP = lv_IS_CONTREP
IS_DIFFCONTROL = lv_IS_DIFFCONTROL
IS_ORGUNIT_AGENCY = lv_IS_ORGUNIT_AGENCY
I_CALLER = lv_I_CALLER
I_SEQNO = lv_I_SEQNO ).
Links to Related Class(s)
CL_BSP_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects