ADAPT_CONFIRMATION_INPUT SAP Method Adapt input for confirmation action
Below is documentation, parameters and attributes of ABAP Method ADAPT_CONFIRMATION_INPUT within SAP class /SCMTMS/TOR_IF_SE_TORB_CONF. 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/TOR_IF_SE_TORB_CONF 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 ADAPT_CONFIRMATION_INPUT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADAPT_CONFIRMATION_INPUT
.| Name | Type | Data Type | Description | Default Value |
| IT_STAGES_FILTERED | Importing | TYPE /SCMTMS/T_PLN_STAGE | Stages of a Transportation Order | |
| IT_STOP | Importing | TYPE /SCMTMS/T_TOR_STOP_K | Stop | |
| IT_STOP_SUCC | Importing | TYPE /SCMTMS/T_TOR_STOP_SUCC_K | Successor of a Stop | |
| CT_STOP_CONF | Changing | TYPE /SCMTMS/T_TOR_A_CONF_STOP | Action Parameter 'Confirm TOR', Stop Dates |
Exceptions of Method ADAPT_CONFIRMATION_INPUT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/TOR_IF_SE_TORB_CONF.
DATA: lv_CT_STOP_CONF TYPE /SCMTMS/T_TOR_A_CONF_STOP,
lv_IT_STAGES_FILTERED TYPE /SCMTMS/T_PLN_STAGE,
lv_IT_STOP TYPE /SCMTMS/T_TOR_STOP_K,
lv_IT_STOP_SUCC TYPE /SCMTMS/T_TOR_STOP_SUCC_K,
lv_other TYPE c.
CALL METHOD lo_class=>ADAPT_CONFIRMATION_INPUT(
EXPORTING
IT_STAGES_FILTERED = lv_IT_STAGES_FILTERED
IT_STOP = lv_IT_STOP
IT_STOP_SUCC = lv_IT_STOP_SUCC
CHANGING
CT_STOP_CONF = lv_CT_STOP_CONF ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects