GTS_2_ERP_AAD_REP_OF_RECEIPT SAP Method Treatment of Inbound Report of Receipt by GTS
Below is documentation, parameters and attributes of ABAP Method GTS_2_ERP_AAD_REP_OF_RECEIPT within SAP class /BEV2/CL_CS_EMCS. 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 /BEV2/CL_CS_EMCS 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 GTS_2_ERP_AAD_REP_OF_RECEIPT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GTS_2_ERP_AAD_REP_OF_RECEIPT
.| Name | Type | Data Type | Description | Default Value |
| IS_HD | Importing | TYPE /BEV2/S_CS_HD | ||
| IT_DEV | Importing | TYPE /BEV2/T_CS_DEV | ||
| IT_HDT | Importing | TYPE /BEV2/T_CS_HDT | ||
| IT_ITT | Importing | TYPE /BEV2/T_CS_ITT | ||
| IT_IT_ROR | Importing | TYPE /BEV2/T_CS_IT_ROR | GTS Communication: Item Data Report of Receipt | |
| IV_EMCS_NO | Importing | TYPE /BEV2/CS_EMCSNR |
Exceptions of Method GTS_2_ERP_AAD_REP_OF_RECEIPT
/BEV2/CX_CS_EMCS - Exceptions for EMCS ProcessExample ABAP coding
DATA: lo_class TYPE REF TO /BEV2/CL_CS_EMCS.
DATA: lv_IS_HD TYPE /BEV2/S_CS_HD,
lv_IT_DEV TYPE /BEV2/T_CS_DEV,
lv_IT_HDT TYPE /BEV2/T_CS_HDT,
lv_IT_ITT TYPE /BEV2/T_CS_ITT,
lv_IT_IT_ROR TYPE /BEV2/T_CS_IT_ROR,
lv_IV_EMCS_NO TYPE /BEV2/CS_EMCSNR,
lv_other TYPE c.
CALL METHOD lo_class=>GTS_2_ERP_AAD_REP_OF_RECEIPT(
EXPORTING
IS_HD = lv_IS_HD
IT_DEV = lv_IT_DEV
IT_HDT = lv_IT_HDT
IT_ITT = lv_IT_ITT
IT_IT_ROR = lv_IT_IT_ROR
IV_EMCS_NO = lv_IV_EMCS_NO ).
Links to Related Class(s)
/BEV2/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects