COLL_A1A3_DC_PMACC_CAMBIO SAP Method Collect Items: Cat. A1/A3, Direct Collection, Payt Method AC
Below is documentation, parameters and attributes of ABAP Method COLL_A1A3_DC_PMACC_CAMBIO within SAP class CL_BSP_BROK_COLLECT_POST. 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_COLLECT_POST 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 COLL_A1A3_DC_PMACC_CAMBIO can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COLL_A1A3_DC_PMACC_CAMBIO
.| Name | Type | Data Type | Description | Default Value |
| CUSTSCR_DP_CONTROLLER | Importing | LIKE | Interface for Customer Screens (Location 01) | |
| IS_CONTREP | Importing | LIKE | Cash Desk Container ID | |
| IS_DIFFCONTROL | Importing | LIKE | Return Structure for Handling Differences | |
| IS_ORGUNIT_AGENCY | Importing | LIKE | Organizational Units Description | |
| IS_PAYMENTDETAILS | Importing | LIKE | Payment Method Structure | |
| I_CALLER | Importing | LIKE | Caller for Posting Collection Transaction | |
| I_SEQNO | Importing | LIKE | Sequence Number | |
| OI_MODEL | Importing | LIKE | Model Class for Open Item Management | |
| RS_COLLECTIONINFORMATION | Importing | LIKE | Return Parameters After Collection |
Exceptions of Method COLL_A1A3_DC_PMACC_CAMBIO
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 CL_BSP_BROK_COLLECT_POST.
DATA: lv_CUSTSCR_DP_CONTROLLER TYPE ,
lv_IS_CONTREP TYPE ,
lv_IS_DIFFCONTROL TYPE ,
lv_IS_ORGUNIT_AGENCY TYPE ,
lv_IS_PAYMENTDETAILS TYPE ,
lv_I_CALLER TYPE ,
lv_I_SEQNO TYPE ,
lv_OI_MODEL TYPE ,
lv_RS_COLLECTIONINFORMATION TYPE ,
lv_other TYPE c.
CALL METHOD lo_class=>COLL_A1A3_DC_PMACC_CAMBIO(
EXPORTING
CUSTSCR_DP_CONTROLLER = lv_CUSTSCR_DP_CONTROLLER
IS_CONTREP = lv_IS_CONTREP
IS_DIFFCONTROL = lv_IS_DIFFCONTROL
IS_ORGUNIT_AGENCY = lv_IS_ORGUNIT_AGENCY
IS_PAYMENTDETAILS = lv_IS_PAYMENTDETAILS
I_CALLER = lv_I_CALLER
I_SEQNO = lv_I_SEQNO
OI_MODEL = lv_OI_MODEL
RS_COLLECTIONINFORMATION = lv_RS_COLLECTIONINFORMATION ).
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