IS_RELEVANT_FOR_CHNAGE_PROCESS SAP Method Remove orders which are not relevant (Obsolete)
Below is documentation, parameters and attributes of ABAP Method IS_RELEVANT_FOR_CHNAGE_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 IS_RELEVANT_FOR_CHNAGE_PROCESS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method IS_RELEVANT_FOR_CHNAGE_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 | |
| IV_SETTLEMENT_TYPE | Importing | TYPE I | ||
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ET_CFIR_ROOT | Exporting | TYPE /SCMTMS/T_CFIR_ROOT_NODE_K | Root Node | |
| ET_TRQ_CFIR_KL | Exporting | TYPE /BOBF/T_FRW_KEY_LINK | Key Link | |
| CT_FWO | Changing | TYPE /BOBF/T_FRW_KEY | Key Table |
Exceptions of Method IS_RELEVANT_FOR_CHNAGE_PROCESS
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_FWO TYPE /BOBF/T_FRW_KEY,
lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_CFIR_ROOT TYPE /SCMTMS/T_CFIR_ROOT_NODE_K,
lv_ET_TRQ_CFIR_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IO_SRV_MGR_TRQ TYPE /BOBF/IF_TRA_SERVICE_MANAGER,
lv_IV_SETTLEMENT_TYPE TYPE I,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_CFIR_HELPER=>IS_RELEVANT_FOR_CHNAGE_PROCESS(
EXPORTING
IO_SRV_MGR_TRQ = lv_IO_SRV_MGR_TRQ
IV_SETTLEMENT_TYPE = lv_IV_SETTLEMENT_TYPE
IMPORTING
EO_MESSAGE = lv_EO_MESSAGE
ET_CFIR_ROOT = lv_ET_CFIR_ROOT
ET_TRQ_CFIR_KL = lv_ET_TRQ_CFIR_KL
CHANGING
CT_FWO = lv_CT_FWO ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects