GET_EXISTING_BUFFER_ENTRIES SAP Method of class /SCMB/CL_DDD_BUFFER_MAINT_SP









Below is documentation, parameters and attributes of ABAP Method GET_EXISTING_BUFFER_ENTRIES within SAP class /SCMB/CL_DDD_BUFFER_MAINT_SP. 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_MAINT_SP 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 GET_EXISTING_BUFFER_ENTRIES can also be found below:

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


Parameters of Method GET_EXISTING_BUFFER_ENTRIES

.

NameTypeData TypeDescriptionDefault Value
IT_PRECISIONImportingTYPE
/SCMB/T_DDD_PRECISION
Table Type for Precision
IT_SELECTED_LANEImportingTYPE
TT_SELECTED_LANE
IV_ACCESSED_FRImportingTYPE
DATS
IV_ACCESSED_TOImportingTYPE
DATS
IV_CHANGED_FRImportingTYPE
DATS
IV_CHANGED_TOImportingTYPE
DATS
IS_VALIDITY_ENDImportingTYPE
TY_S_VALIDITY_END
Validity End (Range - From / To)
IT_SELECTED_LANEImportingTYPE
TT_SELECTED_LANE
Selected Lanes for Distanace and Duration Determination
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_RETURN_KEYS_FOR_INVImportingTYPE
BOOLE_D
Return DDD Buffer Keys for Invalid Entries
ET_DDD_BUFFERExportingTYPE
/SCMB/T_DDD_BUFFER
DDD buffer
ET_DDD_BUFFER_MTRExportingTYPE
/SCMB/T_DDD_BUFFER_MTR
DDD buffer with Means of Transport in key
ET_MESSAGEExportingTYPE
/SCMB/T_LDDD_MESSAGE
ET_MESSAGEExportingTYPE
/SCMB/T_LDDD_MESSAGE
SCMB LDDD: Message Table Type for Dist. and Dur. Determ.



Exceptions of Method GET_EXISTING_BUFFER_ENTRIES

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/CL_DDD_BUFFER_MAINT_SP.
DATA: lv_ET_DDD_BUFFER TYPE /SCMB/T_DDD_BUFFER,
lv_ET_DDD_BUFFER_MTR TYPE /SCMB/T_DDD_BUFFER_MTR,
lv_ET_MESSAGE TYPE /SCMB/T_LDDD_MESSAGE,
lv_IT_PRECISION TYPE /SCMB/T_DDD_PRECISION,
lv_IT_SELECTED_LANE TYPE TT_SELECTED_LANE,
lv_IV_ACCESSED_FR TYPE DATS,
lv_IV_ACCESSED_TO TYPE DATS,
lv_IV_CHANGED_FR TYPE DATS,
lv_IV_CHANGED_TO TYPE DATS,
lv_ET_MESSAGE TYPE /SCMB/T_LDDD_MESSAGE,
lv_IS_VALIDITY_END TYPE TY_S_VALIDITY_END,
lv_IT_SELECTED_LANE TYPE TT_SELECTED_LANE,
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_RETURN_KEYS_FOR_INV TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>GET_EXISTING_BUFFER_ENTRIES(
EXPORTING
IT_PRECISION = lv_IT_PRECISION
IT_SELECTED_LANE = lv_IT_SELECTED_LANE
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
IS_VALIDITY_END = lv_IS_VALIDITY_END
IT_SELECTED_LANE = lv_IT_SELECTED_LANE
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_RETURN_KEYS_FOR_INV = lv_IV_RETURN_KEYS_FOR_INV
IMPORTING
ET_DDD_BUFFER = lv_ET_DDD_BUFFER
ET_DDD_BUFFER_MTR = lv_ET_DDD_BUFFER_MTR
ET_MESSAGE = lv_ET_MESSAGE
ET_MESSAGE = lv_ET_MESSAGE ).

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!