CREATE_TIME_CONDITION SAP Method Create Time Condition
Below is documentation, parameters and attributes of ABAP Method CREATE_TIME_CONDITION 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 CREATE_TIME_CONDITION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_TIME_CONDITION
.| Name | Type | Data Type | Description | Default Value |
| IS_VALIDITY_END | Importing | TYPE TY_S_VALIDITY_END | Validity End (Range - from/to) | |
| IV_ACCESSED_FR | Importing | TYPE /SCMB/DE_TSUAC | Date and Time at Which Object Was Accessed | |
| IV_ACCESSED_TO | Importing | TYPE /SCMB/DE_TSUAC | Date and Time at Which Object Was Accessed | |
| IV_CHANGED_FR | Importing | TYPE /SAPAPO/TSUUP | Date and Time at Which Object Was Last Changed | |
| IV_CHANGED_TO | Importing | TYPE /SAPAPO/TSUUP | Date and Time at Which Object Was Last Changed | |
| RV_SQL_CONDITION | Returning | TYPE STRING |
Exceptions of Method CREATE_TIME_CONDITION
This method does not have any exceptionsExample ABAP coding
DATA: lv_IS_VALIDITY_END TYPE TY_S_VALIDITY_END,
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_RV_SQL_CONDITION TYPE STRING,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DDD_BUFFER_ADAPTER=>CREATE_TIME_CONDITION(
EXPORTING
IS_VALIDITY_END = lv_IS_VALIDITY_END
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
RECEIVING
RV_SQL_CONDITION = lv_RV_SQL_CONDITION )
"Alternate coding for Method Call with returning parameter
lv_RV_SQL_CONDITION = /SCMB/CL_DDD_BUFFER_ADAPTER=>CREATE_TIME_CONDITION(
EXPORTING
IS_VALIDITY_END = lv_IS_VALIDITY_END
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 ).
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