SAP STATUS_DYNAMIC_LIST_DISPLAY Function Module for Project analysis: Display dynamic list









STATUS_DYNAMIC_LIST_DISPLAY is a standard status dynamic list display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Project analysis: Display dynamic list processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for status dynamic list display FM, simply by entering the name STATUS_DYNAMIC_LIST_DISPLAY into the relevant SAP transaction such as SE37 or SE38.

Function Group: SST2
Program Name: SAPLSST2
Main Program: SAPLSST2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function STATUS_DYNAMIC_LIST_DISPLAY pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'STATUS_DYNAMIC_LIST_DISPLAY'"Project analysis: Display dynamic list
EXPORTING
IV_STATUS = "
IV_FCODE = "

TABLES
PROJECT = "
TT_ATTRIBUTES_SELECTION = "
RESSOURCE = "
SELECTION = "
STATUS = "
TT_STATUS_SELECTION = "
TT_RESSOURCE_SELECTION = "
TT_SELECTIONFIELD_SELECTION = "
TT_DOCUMENT_TYPE_SELECTION = "
TT_VIEW_SELECTION = "
.



IMPORTING Parameters details for STATUS_DYNAMIC_LIST_DISPLAY

IV_STATUS -

Data type: ISTAT
Optional: No
Call by Reference: No ( called with pass by value option)

IV_FCODE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for STATUS_DYNAMIC_LIST_DISPLAY

PROJECT -

Data type: ITCUSPT
Optional: No
Call by Reference: No ( called with pass by value option)

TT_ATTRIBUTES_SELECTION -

Data type: DSYAX
Optional: No
Call by Reference: No ( called with pass by value option)

RESSOURCE -

Data type: TSTATRP
Optional: No
Call by Reference: No ( called with pass by value option)

SELECTION -

Data type: TSTATCP
Optional: No
Call by Reference: No ( called with pass by value option)

STATUS -

Data type: ITSTATHT
Optional: No
Call by Reference: No ( called with pass by value option)

TT_STATUS_SELECTION -

Data type: ITSTATSS
Optional: No
Call by Reference: No ( called with pass by value option)

TT_RESSOURCE_SELECTION -

Data type: ITSTATRS
Optional: No
Call by Reference: No ( called with pass by value option)

TT_SELECTIONFIELD_SELECTION -

Data type: ITSTATSLS
Optional: No
Call by Reference: No ( called with pass by value option)

TT_DOCUMENT_TYPE_SELECTION -

Data type: ITSTATDS
Optional: No
Call by Reference: No ( called with pass by value option)

TT_VIEW_SELECTION -

Data type: ITSTATVS
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for STATUS_DYNAMIC_LIST_DISPLAY Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lt_project  TYPE STANDARD TABLE OF ITCUSPT, "   
lv_iv_status  TYPE ISTAT, "   
lt_tt_attributes_selection  TYPE STANDARD TABLE OF DSYAX, "   
lv_iv_fcode  TYPE DSYAX, "   
lt_ressource  TYPE STANDARD TABLE OF TSTATRP, "   
lt_selection  TYPE STANDARD TABLE OF TSTATCP, "   
lt_status  TYPE STANDARD TABLE OF ITSTATHT, "   
lt_tt_status_selection  TYPE STANDARD TABLE OF ITSTATSS, "   
lt_tt_ressource_selection  TYPE STANDARD TABLE OF ITSTATRS, "   
lt_tt_selectionfield_selection  TYPE STANDARD TABLE OF ITSTATSLS, "   
lt_tt_document_type_selection  TYPE STANDARD TABLE OF ITSTATDS, "   
lt_tt_view_selection  TYPE STANDARD TABLE OF ITSTATVS. "   

  CALL FUNCTION 'STATUS_DYNAMIC_LIST_DISPLAY'  "Project analysis: Display dynamic list
    EXPORTING
         IV_STATUS = lv_iv_status
         IV_FCODE = lv_iv_fcode
    TABLES
         PROJECT = lt_project
         TT_ATTRIBUTES_SELECTION = lt_tt_attributes_selection
         RESSOURCE = lt_ressource
         SELECTION = lt_selection
         STATUS = lt_status
         TT_STATUS_SELECTION = lt_tt_status_selection
         TT_RESSOURCE_SELECTION = lt_tt_ressource_selection
         TT_SELECTIONFIELD_SELECTION = lt_tt_selectionfield_selection
         TT_DOCUMENT_TYPE_SELECTION = lt_tt_document_type_selection
         TT_VIEW_SELECTION = lt_tt_view_selection
. " STATUS_DYNAMIC_LIST_DISPLAY




ABAP code using 7.40 inline data declarations to call FM STATUS_DYNAMIC_LIST_DISPLAY

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 


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!