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
.| Name | Type | Data Type | Description | Default Value |
| IS_QUERY | Importing | TYPE /SCMTMS/S_CLC_QUERY | NodeID | |
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ES_OUTPUT | Exporting | TYPE /SCMTMS/CPX_CREDIT_WORTHINESS4 | A2A message type for Customer Freight Invoice Request | |
| ET_SCHEDULE | Exporting | TYPE UKM_T_SCHEDULE | Table for Dynamic Check | |
| EV_PARTNER | Exporting | TYPE BU_PARTNER | Business Partner Number |
Exceptions of Method OUTPUT_MAPPING
/BOBF/IF_FRW_MESSAGE
/SCMTMS/CPX_CREDIT_WORTHINESS4
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