EXECUTE_INV_REQUESTS SAP Method Execute Forwarding Settlement Documents
Below is documentation, parameters and attributes of ABAP Method EXECUTE_INV_REQUESTS within SAP class /SCMTMS/CL_CFIR_CONTROLLER. 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 /SCMTMS/CL_CFIR_CONTROLLER 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 EXECUTE_INV_REQUESTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXECUTE_INV_REQUESTS
.| Name | Type | Data Type | Description | Default Value |
| IT_INPUT_METHPAR | Importing | TYPE /SCTM/TT_CON_INPUT_METHPAR | Method Parameters for Request | |
| IT_REQUEST_DATA | Importing | TYPE /SCMTMS/T_INV_REQUEST | test table type for request | |
| ER_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ET_RESULT | Exporting | TYPE /SCMTMS/T_TCC_COMM_ROOT | ||
| CT_REQUEST_DATA | Changing | TYPE /SCMTMS/T_INV_REQUEST | Invoice Request for process controller |
Exceptions of Method EXECUTE_INV_REQUESTS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_CFIR_CONTROLLER.
DATA: lv_CT_REQUEST_DATA TYPE /SCMTMS/T_INV_REQUEST,
lv_ER_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_RESULT TYPE /SCMTMS/T_TCC_COMM_ROOT,
lv_IT_INPUT_METHPAR TYPE /SCTM/TT_CON_INPUT_METHPAR,
lv_IT_REQUEST_DATA TYPE /SCMTMS/T_INV_REQUEST,
lv_other TYPE c.
CALL METHOD lo_class=>EXECUTE_INV_REQUESTS(
EXPORTING
IT_INPUT_METHPAR = lv_IT_INPUT_METHPAR
IT_REQUEST_DATA = lv_IT_REQUEST_DATA
IMPORTING
ER_MESSAGE = lv_ER_MESSAGE
ET_RESULT = lv_ET_RESULT
CHANGING
CT_REQUEST_DATA = lv_CT_REQUEST_DATA ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects