TRANSIENT_SET SAP Method Fill Transient Data Buffer
Below is documentation, parameters and attributes of ABAP Method TRANSIENT_SET within SAP class /SCMB/IF_SC_DATA. 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/IF_SC_DATA 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 TRANSIENT_SET can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TRANSIENT_SET
.| Name | Type | Data Type | Description | Default Value |
| IS_GRAPH | Importing | TYPE /SCMB/SC_GRAPH | SCMB Scheduling: Activity Graph per Scheduling Request | |
| IS_REQUEST | Importing | TYPE /SCMB/SC_REQUEST | SCMB Scheduling: Scheduling Request | |
| IS_SCHEDRES | Importing | TYPE /SCMB/SC_SCHEDRES | SCMB Scheduling: Result of a Scheduling Request | |
| IT_ENTRIES | Importing | TYPE /SCMB/SC_ENTRY_TAB | SCMB Scheduling: Table of Entry Point Dates | |
| IT_FDATES | Importing | TYPE /SCMB/SC_FDATE_TAB | SCMB Scheduling: Table of Fixed Dates | |
| IV_RESULTID | Importing | TYPE /SCMB/SC_RESULTID | SCMB Scheduling: Identifier for Scheduling Result |
Exceptions of Method TRANSIENT_SET
/SCMB/CX_SC_DATA - SCMB Scheduling: Exception in Data AdministrationExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_SC_DATA.
DATA: lv_IS_GRAPH TYPE /SCMB/SC_GRAPH,
lv_IS_REQUEST TYPE /SCMB/SC_REQUEST,
lv_IS_SCHEDRES TYPE /SCMB/SC_SCHEDRES,
lv_IT_ENTRIES TYPE /SCMB/SC_ENTRY_TAB,
lv_IT_FDATES TYPE /SCMB/SC_FDATE_TAB,
lv_IV_RESULTID TYPE /SCMB/SC_RESULTID,
lv_other TYPE c.
CALL METHOD lo_class=>TRANSIENT_SET(
EXPORTING
IS_GRAPH = lv_IS_GRAPH
IS_REQUEST = lv_IS_REQUEST
IS_SCHEDRES = lv_IS_SCHEDRES
IT_ENTRIES = lv_IT_ENTRIES
IT_FDATES = lv_IT_FDATES
IV_RESULTID = lv_IV_RESULTID ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects