FILL_ITEM_DETAILS_TU SAP Method Fill the item details for TU FWSD items.









Below is documentation, parameters and attributes of ABAP Method FILL_ITEM_DETAILS_TU within SAP class /SCMTMS/CL_CFIR_CRT_REQ_ASSIST. 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_CRT_REQ_ASSIST 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 FILL_ITEM_DETAILS_TU can also be found below:

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


Parameters of Method FILL_ITEM_DETAILS_TU

.

NameTypeData TypeDescriptionDefault Value
IS_CFIR_BO_ITEMImportingTYPE
/SCMTMS/S_CFIR_ITEM_NODE_K
Item Node
IS_CFIR_ROOT_DATAImportingTYPE
/SCMTMS/S_CFIR_ROOT_NODE_K
Root Node
IT_CFIR_MAIN_TRQ_KLImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
IT_CHARGE_ITEMImportingTYPE
/SCMTMS/T_TCC_CHRGITEM_K
Charge Item
IT_LOCATION_DATAImportingTYPE
/SCMTMS/CL_HELPER_UI=>TT_LOC_DETAILS
IT_REF_CFIR_ITEMDOCREF_DATAImportingTYPE
/SCMTMS/T_FWSD_ITEM_DOCREF_K
Document Reference for Item
IT_STAGE_LOCATIONImportingTYPE
/SCMTMS/CL_CFIR_HELPER=>TT_STAGE_LOC
IT_TOR_BO_DATAImportingTYPE
/SCMTMS/T_TOR_ROOT_K
Root Node
IT_TOR_ITEM_DATAImportingTYPE
/SCMTMS/T_TOR_ITEM_TR_K
Transient node for items
IT_TOR_ITM_COMM_CODEImportingTYPE
/SCMTMS/T_TOR_CCODE_K
Commodity Codes
IT_TOR_ITM_DOC_REFImportingTYPE
/SCMTMS/T_TOR_ITEMDOCREF_K
Document Reference
IT_TOR_LOC_DETImportingTYPE
/SCMTMS/T_TOR_STOP_K
Stop
IT_TOR_LOC_KLImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
IT_TOR_LOC_TOImportingTYPE
/SCMTMS/T_TOR_STOP_K
Stop
IT_TOR_LOC_TO_KLImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
IT_TOR_ROOT_SHPPARTY_DATAImportingTYPE
/BOFU/T_BUPA_ROOT_K
BusinessPartner
IT_TOR_ROOT_SHPPTY_ADDRSImportingTYPE
LTY_T_PTY_ADDRS
IT_TOR_STAGE_DImportingTYPE
/SCMTMS/T_PLN_STAGE_D
Stages of multiple Transportation Orders
IT_TRQ_BO_DATAImportingTYPE
/SCMTMS/T_TRQ_ROOT_K
Transportation Request Root
IT_TRQ_ROOT_CONSPARTY_DATAImportingTYPE
/BOFU/T_BUPA_ROOT_K
BusinessPartner
IT_TRQ_ROOT_CONSPTY_ADDRSImportingTYPE
LTY_T_PTY_ADDRS
IT_TOR_ITM_COMM_KLImportingTYPE
/BOBF/T_FRW_KEY_LINK
Key Link
CS_CFIR_MT_ITEMChangingTYPE
/SCMTMS/CPX_CFIR_SUITE_ITM
CustFrtInvcReqSUITEReq_V1Itm
CS_CFIR_MT_TC_CHITEMChangingTYPE
/SCMTMS/CPX_CFIR_SUITE_CHRGITT
CustFrtInvcReqSUITEReq_V1ChrgItm



Exceptions of Method FILL_ITEM_DETAILS_TU

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: lo_class TYPE REF TO /SCMTMS/CL_CFIR_CRT_REQ_ASSIST.
DATA: lv_CS_CFIR_MT_ITEM TYPE /SCMTMS/CPX_CFIR_SUITE_ITM,
lv_CS_CFIR_MT_TC_CHITEM TYPE /SCMTMS/CPX_CFIR_SUITE_CHRGITT,
lv_IS_CFIR_BO_ITEM TYPE /SCMTMS/S_CFIR_ITEM_NODE_K,
lv_IS_CFIR_ROOT_DATA TYPE /SCMTMS/S_CFIR_ROOT_NODE_K,
lv_IT_CFIR_MAIN_TRQ_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_CHARGE_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_IT_LOCATION_DATA TYPE /SCMTMS/CL_HELPER_UI=>TT_LOC_DETAILS,
lv_IT_REF_CFIR_ITEMDOCREF_DATA TYPE /SCMTMS/T_FWSD_ITEM_DOCREF_K,
lv_IT_STAGE_LOCATION TYPE /SCMTMS/CL_CFIR_HELPER=>TT_STAGE_LOC,
lv_IT_TOR_BO_DATA TYPE /SCMTMS/T_TOR_ROOT_K,
lv_IT_TOR_ITEM_DATA TYPE /SCMTMS/T_TOR_ITEM_TR_K,
lv_IT_TOR_ITM_COMM_CODE TYPE /SCMTMS/T_TOR_CCODE_K,
lv_IT_TOR_ITM_DOC_REF TYPE /SCMTMS/T_TOR_ITEMDOCREF_K,
lv_IT_TOR_LOC_DET TYPE /SCMTMS/T_TOR_STOP_K,
lv_IT_TOR_LOC_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_TOR_LOC_TO TYPE /SCMTMS/T_TOR_STOP_K,
lv_IT_TOR_LOC_TO_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_IT_TOR_ROOT_SHPPARTY_DATA TYPE /BOFU/T_BUPA_ROOT_K,
lv_IT_TOR_ROOT_SHPPTY_ADDRS TYPE LTY_T_PTY_ADDRS,
lv_IT_TOR_STAGE_D TYPE /SCMTMS/T_PLN_STAGE_D,
lv_IT_TRQ_BO_DATA TYPE /SCMTMS/T_TRQ_ROOT_K,
lv_IT_TRQ_ROOT_CONSPARTY_DATA TYPE /BOFU/T_BUPA_ROOT_K,
lv_IT_TRQ_ROOT_CONSPTY_ADDRS TYPE LTY_T_PTY_ADDRS,
lv_IT_TOR_ITM_COMM_KL TYPE /BOBF/T_FRW_KEY_LINK,
lv_other TYPE c.

CALL METHOD lo_class=>FILL_ITEM_DETAILS_TU(
EXPORTING
IS_CFIR_BO_ITEM = lv_IS_CFIR_BO_ITEM
IS_CFIR_ROOT_DATA = lv_IS_CFIR_ROOT_DATA
IT_CFIR_MAIN_TRQ_KL = lv_IT_CFIR_MAIN_TRQ_KL
IT_CHARGE_ITEM = lv_IT_CHARGE_ITEM
IT_LOCATION_DATA = lv_IT_LOCATION_DATA
IT_REF_CFIR_ITEMDOCREF_DATA = lv_IT_REF_CFIR_ITEMDOCREF_DATA
IT_STAGE_LOCATION = lv_IT_STAGE_LOCATION
IT_TOR_BO_DATA = lv_IT_TOR_BO_DATA
IT_TOR_ITEM_DATA = lv_IT_TOR_ITEM_DATA
IT_TOR_ITM_COMM_CODE = lv_IT_TOR_ITM_COMM_CODE
IT_TOR_ITM_DOC_REF = lv_IT_TOR_ITM_DOC_REF
IT_TOR_LOC_DET = lv_IT_TOR_LOC_DET
IT_TOR_LOC_KL = lv_IT_TOR_LOC_KL
IT_TOR_LOC_TO = lv_IT_TOR_LOC_TO
IT_TOR_LOC_TO_KL = lv_IT_TOR_LOC_TO_KL
IT_TOR_ROOT_SHPPARTY_DATA = lv_IT_TOR_ROOT_SHPPARTY_DATA
IT_TOR_ROOT_SHPPTY_ADDRS = lv_IT_TOR_ROOT_SHPPTY_ADDRS
IT_TOR_STAGE_D = lv_IT_TOR_STAGE_D
IT_TRQ_BO_DATA = lv_IT_TRQ_BO_DATA
IT_TRQ_ROOT_CONSPARTY_DATA = lv_IT_TRQ_ROOT_CONSPARTY_DATA
IT_TRQ_ROOT_CONSPTY_ADDRS = lv_IT_TRQ_ROOT_CONSPTY_ADDRS
IT_TOR_ITM_COMM_KL = lv_IT_TOR_ITM_COMM_KL
CHANGING
CS_CFIR_MT_ITEM = lv_CS_CFIR_MT_ITEM
CS_CFIR_MT_TC_CHITEM = lv_CS_CFIR_MT_TC_CHITEM ).

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!