ERP_2_GTS_AAD_REP_OF_RECEIPT SAP Method Transfer Data to GTS to Format Report of Receipt









Below is documentation, parameters and attributes of ABAP Method ERP_2_GTS_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 ERP_2_GTS_AAD_REP_OF_RECEIPT can also be found below:

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


Parameters of Method ERP_2_GTS_AAD_REP_OF_RECEIPT

.

NameTypeData TypeDescriptionDefault Value
IS_HDImportingTYPE
/BEV2/S_CS_HD
EMCS Process: Header Data
IT_DEVImportingTYPE
/BEV2/T_CS_DEV
EMCS Process: Information About Deviations
IT_HDTImportingTYPE
/BEV2/T_CS_HDT
EMCS Process: Texts for Header Data
IT_ITTImportingTYPE
/BEV2/T_CS_ITT
EMCS Process: Texts for Items
IT_IT_RORImportingTYPE
/BEV2/T_CS_IT_ROR
EMCS Process: Items for Report of Receipt
IV_CALL_FROM_UPDATEImportingTYPE
ABAP_BOOL
=ABAP_TRUE When Call from FM Update
IV_EMCS_NOImportingTYPE
/BEV2/CS_EMCSNR
EMCS Sequence Number



Exceptions of Method ERP_2_GTS_AAD_REP_OF_RECEIPT

/BEV2/CX_CS_EMCS - Exceptions for EMCS Process

Example 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_CALL_FROM_UPDATE TYPE ABAP_BOOL,
lv_IV_EMCS_NO TYPE /BEV2/CS_EMCSNR,
lv_other TYPE c.

CALL METHOD lo_class=>ERP_2_GTS_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_CALL_FROM_UPDATE = lv_IV_CALL_FROM_UPDATE
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



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!