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

.

NameTypeData TypeDescriptionDefault Value
IM_GRID_TITLEImportingTYPE
TEXT1000
Text of length 1000
IM_LAYOUTImportingTYPE
CHAR1
List Layout
IM_TOOLBAR_DISABLEDImportingTYPE
CHAR1
Display Mode/Toolbar Active
IP_WF_LISTImportingTYPE REF TO
/ISDFPS/CL_FDP_GATP_WF
For Data Retrieval: Workflow Functions - Material Request
IT_DIRECT_LISTImportingTYPE
/ISDFPS/FDP_WFST_LIST_T
Data (Manual): Table with Workflow Entries
IT_EXCL_FUNCImportingTYPE
UI_FUNCTIONS
Excluded Standard Toolbar Functions



Exceptions of Method SHOW

This method does not have any exceptions

Example 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



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!