FILL_TRQ_DETAILS SAP Method Fill the TRQ related details
Below is documentation, parameters and attributes of ABAP Method FILL_TRQ_DETAILS within SAP class /SCMTMS/CL_CFIR_PRNTSIM_HELPER. 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 /SCMTMS/CL_CFIR_PRNTSIM_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 FILL_TRQ_DETAILS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_TRQ_DETAILS
.| Name | Type | Data Type | Description | Default Value |
| IS_CFIR_ROOT_DATA | Importing | TYPE /SCMTMS/S_CFIR_ROOT_NODE_K | Root Node | |
| IT_CFIR_ITEM_DATA | Importing | TYPE /SCMTMS/T_CFIR_ITEM_NODE_K | Item Node | |
| IT_RESOURCE_DATA | Importing | TYPE /SCMTMS/T_RES_ROOT_K | Root node of the TMS Vehicle Resource | |
| IT_TOR_ITEM_RES_LINK | Importing | TYPE /BOBF/T_FRW_KEY_LINK | Key Link | |
| IT_TRAILER_ITEM_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IT_TRQ_ITEM_DATA | Importing | TYPE /SCMTMS/T_TRQ_ITEM_K | Item | |
| IT_TRQ_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IT_TRQ_ROOT_DATA | Importing | TYPE /SCMTMS/T_TRQ_ROOT_K | Transportation Request Root Node Structure | |
| IV_CALC_LEVEL | Importing | TYPE /SCMTMS/CALC_LEVEL | Calculation Level | |
| IT_CFIR_CHARGE_ITEM | Importing | TYPE /SCMTMS/T_TCC_CHRGITEM_K | Charge Item | |
| ET_CFIR_ORDER_DATA | Exporting | TYPE /SCMTMS/T_CFIR_ORDER_DETAILS | Order Details to be sent to ERP for CFIR print |
Exceptions of Method FILL_TRQ_DETAILS
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_ET_CFIR_ORDER_DATA TYPE /SCMTMS/T_CFIR_ORDER_DETAILS,
lv_IS_CFIR_ROOT_DATA TYPE /SCMTMS/S_CFIR_ROOT_NODE_K,
lv_IT_CFIR_ITEM_DATA TYPE /SCMTMS/T_CFIR_ITEM_NODE_K,
lv_IT_RESOURCE_DATA TYPE /SCMTMS/T_RES_ROOT_K,
lv_IT_TOR_ITEM_RES_LINK TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_TRAILER_ITEM_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_TRQ_ITEM_DATA TYPE /SCMTMS/T_TRQ_ITEM_K,
lv_IT_TRQ_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_TRQ_ROOT_DATA TYPE /SCMTMS/T_TRQ_ROOT_K,
lv_IV_CALC_LEVEL TYPE /SCMTMS/CALC_LEVEL,
lv_IT_CFIR_CHARGE_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_CFIR_PRNTSIM_HELPER=>FILL_TRQ_DETAILS(
EXPORTING
IS_CFIR_ROOT_DATA = lv_IS_CFIR_ROOT_DATA
IT_CFIR_ITEM_DATA = lv_IT_CFIR_ITEM_DATA
IT_RESOURCE_DATA = lv_IT_RESOURCE_DATA
IT_TOR_ITEM_RES_LINK = lv_IT_TOR_ITEM_RES_LINK
IT_TRAILER_ITEM_KEY = lv_IT_TRAILER_ITEM_KEY
IT_TRQ_ITEM_DATA = lv_IT_TRQ_ITEM_DATA
IT_TRQ_KEY = lv_IT_TRQ_KEY
IT_TRQ_ROOT_DATA = lv_IT_TRQ_ROOT_DATA
IV_CALC_LEVEL = lv_IV_CALC_LEVEL
IT_CFIR_CHARGE_ITEM = lv_IT_CFIR_CHARGE_ITEM
IMPORTING
ET_CFIR_ORDER_DATA = lv_ET_CFIR_ORDER_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