READ_DDD_BUFFER SAP Method Read DDD buffer
Below is documentation, parameters and attributes of ABAP Method READ_DDD_BUFFER 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 READ_DDD_BUFFER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_DDD_BUFFER
.| Name | Type | Data Type | Description | Default Value |
| IT_PRECISION | Importing | TYPE /SCMB/T_DDD_PRECISION | Table Type for Precision | |
| IT_SEL_KEY_MTR | Importing | TYPE /SCMB/T_DDD_BUFFER_IK_MTR | Key table for DDD buffer (MTR key) | |
| IV_SKIP_UNDEFINED | Importing | TYPE BOOLE_D | No results with undefined precision | |
| IV_UPDATE_ACCESS_DATE | Importing | TYPE XFELD | Flag, if access date is updated | |
| IS_VALIDITY_END | Importing | TYPE TY_S_VALIDITY_END | Validity End (from/to) | |
| IV_RETURN_KEYS_FOR_INV | Importing | TYPE BOOLE_D | Return DDD buffer keys for invalid entries | |
| ET_DDD_BUFFER | Exporting | TYPE /SCMB/T_DDD_BUFFER | DDD buffer | |
| ET_RESULT | Exporting | TYPE /SCMB/T_DDD_BUFFER_MTR | DDD buffer with Means of Transport in key | |
| CO_MESSAGE_HANDLER | Changing | TYPE REF TO /SCMB/CL_LDDD_MESSAGE_HANDLER | Message Handler for LDDD Messages |
Exceptions of Method READ_DDD_BUFFER
This method does not have any exceptionsExample ABAP coding
DATA: lv_CO_MESSAGE_HANDLER TYPE /SCMB/CL_LDDD_MESSAGE_HANDLER,
lv_ET_DDD_BUFFER TYPE /SCMB/T_DDD_BUFFER,
lv_ET_RESULT TYPE /SCMB/T_DDD_BUFFER_MTR,
lv_IT_PRECISION TYPE /SCMB/T_DDD_PRECISION,
lv_IT_SEL_KEY_MTR TYPE /SCMB/T_DDD_BUFFER_IK_MTR,
lv_IV_SKIP_UNDEFINED TYPE BOOLE_D,
lv_IV_UPDATE_ACCESS_DATE TYPE XFELD,
lv_IS_VALIDITY_END TYPE TY_S_VALIDITY_END,
lv_IV_RETURN_KEYS_FOR_INV TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>READ_DDD_BUFFER(
EXPORTING
IT_PRECISION = lv_IT_PRECISION
IT_SEL_KEY_MTR = lv_IT_SEL_KEY_MTR
IV_SKIP_UNDEFINED = lv_IV_SKIP_UNDEFINED
IV_UPDATE_ACCESS_DATE = lv_IV_UPDATE_ACCESS_DATE
IS_VALIDITY_END = lv_IS_VALIDITY_END
IV_RETURN_KEYS_FOR_INV = lv_IV_RETURN_KEYS_FOR_INV
IMPORTING
ET_DDD_BUFFER = lv_ET_DDD_BUFFER
ET_RESULT = lv_ET_RESULT
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