FILL_ITEM_DETAILS SAP Method Fill the Order-Item related details to be serialized









Below is documentation, parameters and attributes of ABAP Method FILL_ITEM_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 directly

The following technical details of method FILL_ITEM_DETAILS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method FILL_ITEM_DETAILS

.

NameTypeData TypeDescriptionDefault Value
IS_CFIR_ORDER_DATAImportingTYPE
/SCMTMS/S_CFIR_ORDER_DETAILS
Order Details to be sent to ERP for CFIR print
IS_TOR_ROOT_DATAImportingTYPE
/SCMTMS/S_TOR_ROOT_K
Root Node
IS_TRQ_ROOT_DATAImportingTYPE
/SCMTMS/S_TRQ_ROOT_K
Transportation Request Root
IT_CFIR_ITEM_DATAImportingTYPE
/SCMTMS/T_CFIR_ITEM_NODE_K
Item Node
IT_ITM_CFIR_TRQ_KLImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
IT_RESOURCE_DATAImportingTYPE
/SCMTMS/T_RES_ROOT_K
Root node of the TMS Vehicle Resource
IT_TOR_ITEM_DATAImportingTYPE
/SCMTMS/T_TOR_ITEM_TR_K
Transient node for items
IT_TOR_ITEM_RES_LINKImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
IT_TRQ_ITEM_DATAImportingTYPE
/SCMTMS/T_TRQ_ITEM_K
Item
IT_TRQ_ITEM_FD_ITEM_LINKImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
ET_CFIR_ORDER_ITEMSExportingTYPE
/SCMTMS/T_CFIR_ORDER_ITEM_DET
Table of Order Items, data to be sent to ERP for Printing



Exceptions of Method FILL_ITEM_DETAILS

This method does not have any exceptions

Example 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_ITEMS TYPE /SCMTMS/T_CFIR_ORDER_ITEM_DET,
lv_IS_CFIR_ORDER_DATA TYPE /SCMTMS/S_CFIR_ORDER_DETAILS,
lv_IS_TOR_ROOT_DATA TYPE /SCMTMS/S_TOR_ROOT_K,
lv_IS_TRQ_ROOT_DATA TYPE /SCMTMS/S_TRQ_ROOT_K,
lv_IT_CFIR_ITEM_DATA TYPE /SCMTMS/T_CFIR_ITEM_NODE_K,
lv_IT_ITM_CFIR_TRQ_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_RESOURCE_DATA TYPE /SCMTMS/T_RES_ROOT_K,
lv_IT_TOR_ITEM_DATA TYPE /SCMTMS/T_TOR_ITEM_TR_K,
lv_IT_TOR_ITEM_RES_LINK TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_TRQ_ITEM_DATA TYPE /SCMTMS/T_TRQ_ITEM_K,
lv_IT_TRQ_ITEM_FD_ITEM_LINK TYPE /BOBF/T_FRW_KEY_LINK,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_CFIR_PRNTSIM_HELPER=>FILL_ITEM_DETAILS(
EXPORTING
IS_CFIR_ORDER_DATA = lv_IS_CFIR_ORDER_DATA
IS_TOR_ROOT_DATA = lv_IS_TOR_ROOT_DATA
IS_TRQ_ROOT_DATA = lv_IS_TRQ_ROOT_DATA
IT_CFIR_ITEM_DATA = lv_IT_CFIR_ITEM_DATA
IT_ITM_CFIR_TRQ_KL = lv_IT_ITM_CFIR_TRQ_KL
IT_RESOURCE_DATA = lv_IT_RESOURCE_DATA
IT_TOR_ITEM_DATA = lv_IT_TOR_ITEM_DATA
IT_TOR_ITEM_RES_LINK = lv_IT_TOR_ITEM_RES_LINK
IT_TRQ_ITEM_DATA = lv_IT_TRQ_ITEM_DATA
IT_TRQ_ITEM_FD_ITEM_LINK = lv_IT_TRQ_ITEM_FD_ITEM_LINK
IMPORTING
ET_CFIR_ORDER_ITEMS = lv_ET_CFIR_ORDER_ITEMS ).

Links to Related Class(s)

/SCMTMS/...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!