READ_DDD_BUFFER_COMPLETE SAP Method Read DDD buffer









Below is documentation, parameters and attributes of ABAP Method READ_DDD_BUFFER_COMPLETE 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 directly

The following technical details of method READ_DDD_BUFFER_COMPLETE can also be found below:

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


Parameters of Method READ_DDD_BUFFER_COMPLETE

.

NameTypeData TypeDescriptionDefault Value
IT_PRECISIONImportingTYPE
/SCMB/T_DDD_PRECISION
Table Type for Precision
IT_TTYPEImportingTYPE
/SAPAPO/TR_TTK_TRSPEEDS
Means of Transport
IV_ACCTSTMP_FROMImportingTYPE
/SCMB/DE_TSUAC
Date and Time at Which Object Was Accessed
IV_ACCTSTMP_TOImportingTYPE
/SCMB/DE_TSUAC
Date and Time at Which Object Was Accessed
IV_CHTSTMP_FROMImportingTYPE
/SAPAPO/TSUUP
Date and Time at Which Object Was Last Changed
IV_CHTSTMP_TOImportingTYPE
/SAPAPO/TSUUP
Date and Time at Which Object Was Last Changed
IV_STRATEGYImportingTYPE
/SCMB/DE_STRATEGY
Control Strategy
IS_SELECT_BYImportingTYPE
TY_S_BUFFER_CRIT_X
Buffer select by
IS_VALIDITY_ENDImportingTYPE
TY_S_VALIDITY_END
Validity End (Range - from/to)
IT_SELECTION_CRITERIAImportingTYPE
TY_T_BUFFER_CRIT
Buffer selection criteria
IV_ACCESSED_FRImportingTYPE
/SCMB/DE_TSUAC
Date and Time at Which Object Was Accessed
IV_ACCESSED_TOImportingTYPE
/SCMB/DE_TSUAC
Date and Time at Which Object Was Accessed
IV_CHANGED_FRImportingTYPE
/SAPAPO/TSUUP
Date and Time at Which Object Was Last Changed
IV_CHANGED_TOImportingTYPE
/SAPAPO/TSUUP
Date and Time at Which Object Was Last Changed
IV_MAX_RESULTSImportingTYPE
I
Max. number of result entries
ET_RESULTExportingTYPE
/SCMB/T_DDD_BUFFER_MTR
DDD buffer with Means of Transport in key
ET_BUFFERExportingTYPE
/SCMB/T_DDD_BUFFER
DDD buffer with Means of Transport in key
EV_BUFFER_ENTRIES_MATCHExportingTYPE
INT4
Number of mathcing buffer entries
CO_MESSAGE_HANDLERChangingTYPE REF TO
/SCMB/CL_LDDD_MESSAGE_HANDLER
Message Handler for LDDD Messages



Exceptions of Method READ_DDD_BUFFER_COMPLETE

This method does not have any exceptions

Example ABAP coding


DATA: lv_CO_MESSAGE_HANDLER TYPE /SCMB/CL_LDDD_MESSAGE_HANDLER,
lv_ET_RESULT TYPE /SCMB/T_DDD_BUFFER_MTR,
lv_IT_PRECISION TYPE /SCMB/T_DDD_PRECISION,
lv_IT_TTYPE TYPE /SAPAPO/TR_TTK_TRSPEEDS,
lv_IV_ACCTSTMP_FROM TYPE /SCMB/DE_TSUAC,
lv_IV_ACCTSTMP_TO TYPE /SCMB/DE_TSUAC,
lv_IV_CHTSTMP_FROM TYPE /SAPAPO/TSUUP,
lv_IV_CHTSTMP_TO TYPE /SAPAPO/TSUUP,
lv_IV_STRATEGY TYPE /SCMB/DE_STRATEGY,
lv_ET_BUFFER TYPE /SCMB/T_DDD_BUFFER,
lv_EV_BUFFER_ENTRIES_MATCH TYPE INT4,
lv_IS_SELECT_BY TYPE TY_S_BUFFER_CRIT_X,
lv_IS_VALIDITY_END TYPE TY_S_VALIDITY_END,
lv_IT_SELECTION_CRITERIA TYPE TY_T_BUFFER_CRIT,
lv_IV_ACCESSED_FR TYPE /SCMB/DE_TSUAC,
lv_IV_ACCESSED_TO TYPE /SCMB/DE_TSUAC,
lv_IV_CHANGED_FR TYPE /SAPAPO/TSUUP,
lv_IV_CHANGED_TO TYPE /SAPAPO/TSUUP,
lv_IV_MAX_RESULTS TYPE I,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>READ_DDD_BUFFER_COMPLETE(
EXPORTING
IT_PRECISION = lv_IT_PRECISION
IT_TTYPE = lv_IT_TTYPE
IV_ACCTSTMP_FROM = lv_IV_ACCTSTMP_FROM
IV_ACCTSTMP_TO = lv_IV_ACCTSTMP_TO
IV_CHTSTMP_FROM = lv_IV_CHTSTMP_FROM
IV_CHTSTMP_TO = lv_IV_CHTSTMP_TO
IV_STRATEGY = lv_IV_STRATEGY
IS_SELECT_BY = lv_IS_SELECT_BY
IS_VALIDITY_END = lv_IS_VALIDITY_END
IT_SELECTION_CRITERIA = lv_IT_SELECTION_CRITERIA
IV_ACCESSED_FR = lv_IV_ACCESSED_FR
IV_ACCESSED_TO = lv_IV_ACCESSED_TO
IV_CHANGED_FR = lv_IV_CHANGED_FR
IV_CHANGED_TO = lv_IV_CHANGED_TO
IV_MAX_RESULTS = lv_IV_MAX_RESULTS
IMPORTING
ET_RESULT = lv_ET_RESULT
ET_BUFFER = lv_ET_BUFFER
EV_BUFFER_ENTRIES_MATCH = lv_EV_BUFFER_ENTRIES_MATCH
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



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!