SAVE_DDD_RESULT SAP Method Save DDD result to buffer
Below is documentation, parameters and attributes of ABAP Method SAVE_DDD_RESULT within SAP class /SCMB/CL_DDD_BUFFER_ADAPTER. 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 /SCMB/CL_DDD_BUFFER_ADAPTER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method SAVE_DDD_RESULT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SAVE_DDD_RESULT
.| Name | Type | Data Type | Description | Default Value |
| IT_DDDBUFFER_UPDATE | Importing | TYPE /SCMB/T_DDD_BUFFER_MTR | DDD buffer with Means of Transport in key | |
| IV_ACCEPT_DUP_KEYS | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_ASYN | Importing | TYPE /SAPAPO/TR_DBSAVEASYNFLG | Indicator: Asynchronous Update on DB Via Update Task | |
| IV_COMMIT | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| CO_MESSAGE_HANDLER | Changing | TYPE REF TO /SCMB/CL_LDDD_MESSAGE_HANDLER | Message Handler for LDDD Messages |
Exceptions of Method SAVE_DDD_RESULT
This method does not have any exceptionsExample ABAP coding
DATA: lv_CO_MESSAGE_HANDLER TYPE /SCMB/CL_LDDD_MESSAGE_HANDLER,
lv_IT_DDDBUFFER_UPDATE TYPE /SCMB/T_DDD_BUFFER_MTR,
lv_IV_ACCEPT_DUP_KEYS TYPE BOOLE_D,
lv_IV_ASYN TYPE /SAPAPO/TR_DBSAVEASYNFLG,
lv_IV_COMMIT TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>SAVE_DDD_RESULT(
EXPORTING
IT_DDDBUFFER_UPDATE = lv_IT_DDDBUFFER_UPDATE
IV_ACCEPT_DUP_KEYS = lv_IV_ACCEPT_DUP_KEYS
IV_ASYN = lv_IV_ASYN
IV_COMMIT = lv_IV_COMMIT
CHANGING
CO_MESSAGE_HANDLER = lv_CO_MESSAGE_HANDLER ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects