GET_ITEM_REFERENCE_DATE SAP Method Get item reference date
Below is documentation, parameters and attributes of ABAP Method GET_ITEM_REFERENCE_DATE within SAP class /SCMTMS/CL_COMPLIANCE_SERVICE. 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_COMPLIANCE_SERVICE 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 GET_ITEM_REFERENCE_DATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_ITEM_REFERENCE_DATE
.| Name | Type | Data Type | Description | Default Value |
| IT_ITEM | Importing | TYPE /SCMTMS/T_TOR_ITEM_TR_K | Transportation Order Item | |
| IT_ITEM_INBOUND | Importing | TYPE /SCMTMS/T_TOR_ITEM_TR_K | Transportation Order Item | |
| IT_LOCATION | Importing | TYPE /SCMTMS/T_BO_LOC_ROOT_K | Root node of BO Location | |
| IT_STOP | Importing | TYPE /SCMTMS/T_TOR_STOP_K | Stop | |
| IV_BEFORE_IMAGE | Importing | TYPE ABAP_BOOL | Before Image | |
| ET_ITEM_REF_DATE | Exporting | TYPE TT_ITEM_REF_DATE | Item Reference Dates |
Exceptions of Method GET_ITEM_REFERENCE_DATE
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_ITEM_REF_DATE TYPE TT_ITEM_REF_DATE,
lv_IT_ITEM TYPE /SCMTMS/T_TOR_ITEM_TR_K,
lv_IT_ITEM_INBOUND TYPE /SCMTMS/T_TOR_ITEM_TR_K,
lv_IT_LOCATION TYPE /SCMTMS/T_BO_LOC_ROOT_K,
lv_IT_STOP TYPE /SCMTMS/T_TOR_STOP_K,
lv_IV_BEFORE_IMAGE TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COMPLIANCE_SERVICE=>GET_ITEM_REFERENCE_DATE(
EXPORTING
IT_ITEM = lv_IT_ITEM
IT_ITEM_INBOUND = lv_IT_ITEM_INBOUND
IT_LOCATION = lv_IT_LOCATION
IT_STOP = lv_IT_STOP
IV_BEFORE_IMAGE = lv_IV_BEFORE_IMAGE
IMPORTING
ET_ITEM_REF_DATE = lv_ET_ITEM_REF_DATE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects