DELETE_DDD_BUFFER_GENERAL SAP Method Delete DDD result from buffer









Below is documentation, parameters and attributes of ABAP Method DELETE_DDD_BUFFER_GENERAL 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 DELETE_DDD_BUFFER_GENERAL can also be found below:

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


Parameters of Method DELETE_DDD_BUFFER_GENERAL

.

NameTypeData TypeDescriptionDefault Value
IS_VALIDITY_ENDImportingTYPE
TY_S_VALIDITY_END
Validity End (from/to)
IT_PRECISIONImportingTYPE
/SCMB/T_DDD_PRECISION
Table Type for Precision
IT_SPEED_PROFILEImportingTYPE
/SAPAPO/TR_TPK_TRSPEEDS
Speed Profile
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_COMMITImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_STRATEGYImportingTYPE
/SCTM/DE_STRATEGY
Control Strategy
EV_CNT_DELETED_ENTRIESExportingTYPE
I
Number of deleted entries



Exceptions of Method DELETE_DDD_BUFFER_GENERAL

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_CNT_DELETED_ENTRIES TYPE I,
lv_IS_VALIDITY_END TYPE TY_S_VALIDITY_END,
lv_IT_PRECISION TYPE /SCMB/T_DDD_PRECISION,
lv_IT_SPEED_PROFILE TYPE /SAPAPO/TR_TPK_TRSPEEDS,
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_COMMIT TYPE BOOLE_D,
lv_IV_STRATEGY TYPE /SCTM/DE_STRATEGY,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>DELETE_DDD_BUFFER_GENERAL(
EXPORTING
IS_VALIDITY_END = lv_IS_VALIDITY_END
IT_PRECISION = lv_IT_PRECISION
IT_SPEED_PROFILE = lv_IT_SPEED_PROFILE
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_COMMIT = lv_IV_COMMIT
IV_STRATEGY = lv_IV_STRATEGY
IMPORTING
EV_CNT_DELETED_ENTRIES = lv_EV_CNT_DELETED_ENTRIES ).

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!