CHECK_TRQS_FOR_CHNG_PROCESS SAP Method Check FWOs for Settlement creation (Obsolete)
Below is documentation, parameters and attributes of ABAP Method CHECK_TRQS_FOR_CHNG_PROCESS within SAP class /SCMTMS/CL_CFIR_HELPER. 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_HELPER 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 CHECK_TRQS_FOR_CHNG_PROCESS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_TRQS_FOR_CHNG_PROCESS
.| Name | Type | Data Type | Description | Default Value |
| IO_SRV_MGR_TRQ | Importing | TYPE REF TO /BOBF/IF_TRA_SERVICE_MANAGER | Containing the public service methods of a service manager | |
| IT_TRQ_CHG_ITEM | Importing | TYPE /SCMTMS/T_TCC_CHRGITEM_K | Charge Item | |
| IT_TRQ_CHG_ROOT | Importing | TYPE /SCMTMS/T_TCC_ROOT_K | Root | |
| IV_SETTLEMENT_TYPE | Importing | TYPE I | ||
| EO_CHANGE | Exporting | TYPE REF TO /BOBF/IF_TRA_CHANGE | Interface for transaction change objects | |
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ET_CHNG_PROC_CRTN | Exporting | TYPE /SCMTMS/T_CHNG_PROC_CRTN | Change Process Creation Method | |
| CT_FWO_KEYS | Changing | TYPE /BOBF/T_FRW_KEY | Key Table |
Exceptions of Method CHECK_TRQS_FOR_CHNG_PROCESS
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_FWO_KEYS TYPE /BOBF/T_FRW_KEY,
lv_EO_CHANGE TYPE /BOBF/IF_TRA_CHANGE,
lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_CHNG_PROC_CRTN TYPE /SCMTMS/T_CHNG_PROC_CRTN,
lv_IO_SRV_MGR_TRQ TYPE /BOBF/IF_TRA_SERVICE_MANAGER,
lv_IT_TRQ_CHG_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_IT_TRQ_CHG_ROOT TYPE /SCMTMS/T_TCC_ROOT_K,
lv_IV_SETTLEMENT_TYPE TYPE I,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_CFIR_HELPER=>CHECK_TRQS_FOR_CHNG_PROCESS(
EXPORTING
IO_SRV_MGR_TRQ = lv_IO_SRV_MGR_TRQ
IT_TRQ_CHG_ITEM = lv_IT_TRQ_CHG_ITEM
IT_TRQ_CHG_ROOT = lv_IT_TRQ_CHG_ROOT
IV_SETTLEMENT_TYPE = lv_IV_SETTLEMENT_TYPE
IMPORTING
EO_CHANGE = lv_EO_CHANGE
EO_MESSAGE = lv_EO_MESSAGE
ET_CHNG_PROC_CRTN = lv_ET_CHNG_PROC_CRTN
CHANGING
CT_FWO_KEYS = lv_CT_FWO_KEYS ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects