SHOW SAP Method Display List
Below is documentation, parameters and attributes of ABAP Method SHOW within SAP class /ISDFPS/CL_FDP_WF_VISUALIZE. 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 /ISDFPS/CL_FDP_WF_VISUALIZE 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 SHOW can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SHOW
.| Name | Type | Data Type | Description | Default Value |
| IM_GRID_TITLE | Importing | TYPE TEXT1000 | Text of length 1000 | |
| IM_LAYOUT | Importing | TYPE CHAR1 | List Layout | |
| IM_TOOLBAR_DISABLED | Importing | TYPE CHAR1 | Display Mode/Toolbar Active | |
| IP_WF_LIST | Importing | TYPE REF TO /ISDFPS/CL_FDP_GATP_WF | For Data Retrieval: Workflow Functions - Material Request | |
| IT_DIRECT_LIST | Importing | TYPE /ISDFPS/FDP_WFST_LIST_T | Data (Manual): Table with Workflow Entries | |
| IT_EXCL_FUNC | Importing | TYPE UI_FUNCTIONS | Excluded Standard Toolbar Functions |
Exceptions of Method SHOW
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /ISDFPS/CL_FDP_WF_VISUALIZE.
DATA: lv_IM_GRID_TITLE TYPE TEXT1000,
lv_IM_LAYOUT TYPE CHAR1,
lv_IM_TOOLBAR_DISABLED TYPE CHAR1,
lv_IP_WF_LIST TYPE /ISDFPS/CL_FDP_GATP_WF,
lv_IT_DIRECT_LIST TYPE /ISDFPS/FDP_WFST_LIST_T,
lv_IT_EXCL_FUNC TYPE UI_FUNCTIONS,
lv_other TYPE c.
CALL METHOD lo_class=>SHOW(
EXPORTING
IM_GRID_TITLE = lv_IM_GRID_TITLE
IM_LAYOUT = lv_IM_LAYOUT
IM_TOOLBAR_DISABLED = lv_IM_TOOLBAR_DISABLED
IP_WF_LIST = lv_IP_WF_LIST
IT_DIRECT_LIST = lv_IT_DIRECT_LIST
IT_EXCL_FUNC = lv_IT_EXCL_FUNC ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects