OUTPUT_MAPPING SAP Method Output mapping









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

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


Parameters of Method OUTPUT_MAPPING

.

NameTypeData TypeDescriptionDefault Value
IS_QUERYImportingTYPE
/SCMTMS/S_CLC_QUERY
NodeID
EO_MESSAGEExportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
ES_OUTPUTExportingTYPE
/SCMTMS/CPX_CREDIT_WORTHINESS4
A2A message type for Customer Freight Invoice Request
ET_SCHEDULEExportingTYPE
UKM_T_SCHEDULE
Table for Dynamic Check
EV_PARTNERExportingTYPE
BU_PARTNER
Business Partner Number



Exceptions of Method OUTPUT_MAPPING

EO_MESSAGEExportingTYPE REF TO
/BOBF/IF_FRW_MESSAGEInterface of Message ObjectES_OUTPUTExportingTYPE
/SCMTMS/CPX_CREDIT_WORTHINESS4A2A message type for Customer Freight Invoice RequestCX_SY_ARITHMETIC_OVERFLOW - System Exception for Arithmetic Overflow

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/CL_CLC_OUTPUT_ASSIST.
DATA: lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ES_OUTPUT TYPE /SCMTMS/CPX_CREDIT_WORTHINESS4,
lv_IS_QUERY TYPE /SCMTMS/S_CLC_QUERY,
lv_ET_SCHEDULE TYPE UKM_T_SCHEDULE,
lv_EV_PARTNER TYPE BU_PARTNER,
lv_other TYPE c.

CALL METHOD lo_class=>OUTPUT_MAPPING(
EXPORTING
IS_QUERY = lv_IS_QUERY
IMPORTING
EO_MESSAGE = lv_EO_MESSAGE
ES_OUTPUT = lv_ES_OUTPUT
ET_SCHEDULE = lv_ET_SCHEDULE
EV_PARTNER = lv_EV_PARTNER ).

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!