VIEWCONT SAP Method Start View Controller
Below is documentation, parameters and attributes of ABAP Method VIEWCONT within SAP class /SCMB/IF_SC_EXPL. 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_EXPL 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 VIEWCONT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method VIEWCONT
.| Name | Type | Data Type | Description | Default Value |
| IS_DESCTEXT | Importing | TYPE /SCMB/SC_EXPL_TEXT | SCMB Scheduling: Texts for Explanation Facility | |
| IS_REQUEST | Importing | TYPE /SCMB/SC_EXPL_REQU | SCMB Scheduling: Request Data (Explanation Facility) | |
| IS_SCHEDRES | Importing | TYPE /SCMB/SC_SCHEDRES | SCMB Scheduling: Result of a Scheduling Request | |
| IT_ACTI | Importing | TYPE /SCMB/SC_EXPL_ACTI_SHOW_TAB | SCMB Scheduling: Display Table for Activity Data | |
| IT_NET | Importing | TYPE /SCMB/SC_EXPL_NET_TAB | SCMB Scheduling: Display Table for Network Definition |
Exceptions of Method VIEWCONT
/SCMB/CX_SC_DISPLAY - SCMB Scheduling: Exception in Data DisplayExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_SC_EXPL.
DATA: lv_IS_DESCTEXT TYPE /SCMB/SC_EXPL_TEXT,
lv_IS_REQUEST TYPE /SCMB/SC_EXPL_REQU,
lv_IS_SCHEDRES TYPE /SCMB/SC_SCHEDRES,
lv_IT_ACTI TYPE /SCMB/SC_EXPL_ACTI_SHOW_TAB,
lv_IT_NET TYPE /SCMB/SC_EXPL_NET_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>VIEWCONT(
EXPORTING
IS_DESCTEXT = lv_IS_DESCTEXT
IS_REQUEST = lv_IS_REQUEST
IS_SCHEDRES = lv_IS_SCHEDRES
IT_ACTI = lv_IT_ACTI
IT_NET = lv_IT_NET ).
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