SAP INFO_OBJECTS_DISPLAY_LIST Function Module for Display a list of info objects









INFO_OBJECTS_DISPLAY_LIST is a standard info objects display list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display a list of info objects 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 info objects display list FM, simply by entering the name INFO_OBJECTS_DISPLAY_LIST into the relevant SAP transaction such as SE37 or SE38.

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



Function INFO_OBJECTS_DISPLAY_LIST 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 'INFO_OBJECTS_DISPLAY_LIST'"Display a list of info objects
EXPORTING
* TASK = 'DOCU' "
* SUPPRESS_CONTEXT_RESET = ' ' "Single-Character Flag
* POPUP = ' ' "
* SOURCE_INFO_OBJECT = "
* TOP_OF_PAGE_HEADER = ' ' "
* NEW_MODE = ' ' "
* SUPPRESS_AUTHORITY_CHECK = 'X' "
* NO_DOCKING = 'X' "Single-Character Flag
* DOCK_REPID = ' ' "ABAP Program: Current Main Program
* DOCK_DYNNR = ' ' "ABAP Program: Number of Current Screen

IMPORTING
CALL_BROWSER = "
ACTION = "
ERROR_MSG = "

TABLES
* INFO_OBJECTS = "
* TRANSLATION_PREP = "
* SELECTED_ITEMS_TAB = "
CONTEXT = "
* PROPERTIES_SOURCE = "
* PROPERTIES_TARGET = "
* INFO_OBJECTS_WITH_TASK = "
* EMPTY_FOLDERS = "
* RESULT_INFO_OBJECTS = "
* RESULT_PROPERTIES = "
* BAD_OBJECTS = "
.



IMPORTING Parameters details for INFO_OBJECTS_DISPLAY_LIST

TASK -

Data type: SY-UCOMM
Default: 'DOCU'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUPPRESS_CONTEXT_RESET - Single-Character Flag

Data type: IWPARAMS-FLAG
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

POPUP -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SOURCE_INFO_OBJECT -

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

TOP_OF_PAGE_HEADER -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NEW_MODE -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUPPRESS_AUTHORITY_CHECK -

Data type: IWPARAMS-FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_DOCKING - Single-Character Flag

Data type: IWPARAMS-FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

DOCK_REPID - ABAP Program: Current Main Program

Data type: SY-REPID
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

DOCK_DYNNR - ABAP Program: Number of Current Screen

Data type: SY-DYNNR
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for INFO_OBJECTS_DISPLAY_LIST

CALL_BROWSER -

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

ACTION -

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

ERROR_MSG -

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

TABLES Parameters details for INFO_OBJECTS_DISPLAY_LIST

INFO_OBJECTS -

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

TRANSLATION_PREP -

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

SELECTED_ITEMS_TAB -

Data type: SDOKOBJECT
Optional: Yes
Call by Reference: Yes

CONTEXT -

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

PROPERTIES_SOURCE -

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

PROPERTIES_TARGET -

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

INFO_OBJECTS_WITH_TASK -

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

EMPTY_FOLDERS -

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

RESULT_INFO_OBJECTS -

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

RESULT_PROPERTIES -

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

BAD_OBJECTS -

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

Copy and paste ABAP code example for INFO_OBJECTS_DISPLAY_LIST 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:
lv_task  TYPE SY-UCOMM, "   'DOCU'
lv_call_browser  TYPE C, "   
lt_info_objects  TYPE STANDARD TABLE OF SDOKOBJECT, "   
lt_translation_prep  TYPE STANDARD TABLE OF IWIOTRANSL, "   
lv_suppress_context_reset  TYPE IWPARAMS-FLAG, "   SPACE
lt_selected_items_tab  TYPE STANDARD TABLE OF SDOKOBJECT, "   
lv_popup  TYPE C, "   SPACE
lv_action  TYPE SY-UCOMM, "   
lt_context  TYPE STANDARD TABLE OF SDOKPROPTY, "   
lv_error_msg  TYPE IWERRORMSG, "   
lt_properties_source  TYPE STANDARD TABLE OF SDOKPROPTL, "   
lv_source_info_object  TYPE SDOKOBJECT, "   
lt_properties_target  TYPE STANDARD TABLE OF SDOKPROPTL, "   
lv_top_of_page_header  TYPE C, "   SPACE
lv_new_mode  TYPE C, "   SPACE
lt_info_objects_with_task  TYPE STANDARD TABLE OF IWCHECKOUT, "   
lt_empty_folders  TYPE STANDARD TABLE OF SDOKOBJECT, "   
lv_suppress_authority_check  TYPE IWPARAMS-FLAG, "   'X'
lv_no_docking  TYPE IWPARAMS-FLAG, "   'X'
lt_result_info_objects  TYPE STANDARD TABLE OF SDOKOBJECT, "   
lv_dock_repid  TYPE SY-REPID, "   SPACE
lt_result_properties  TYPE STANDARD TABLE OF SDOKPROPTL, "   
lv_dock_dynnr  TYPE SY-DYNNR, "   SPACE
lt_bad_objects  TYPE STANDARD TABLE OF IWERROBJCT. "   

  CALL FUNCTION 'INFO_OBJECTS_DISPLAY_LIST'  "Display a list of info objects
    EXPORTING
         TASK = lv_task
         SUPPRESS_CONTEXT_RESET = lv_suppress_context_reset
         POPUP = lv_popup
         SOURCE_INFO_OBJECT = lv_source_info_object
         TOP_OF_PAGE_HEADER = lv_top_of_page_header
         NEW_MODE = lv_new_mode
         SUPPRESS_AUTHORITY_CHECK = lv_suppress_authority_check
         NO_DOCKING = lv_no_docking
         DOCK_REPID = lv_dock_repid
         DOCK_DYNNR = lv_dock_dynnr
    IMPORTING
         CALL_BROWSER = lv_call_browser
         ACTION = lv_action
         ERROR_MSG = lv_error_msg
    TABLES
         INFO_OBJECTS = lt_info_objects
         TRANSLATION_PREP = lt_translation_prep
         SELECTED_ITEMS_TAB = lt_selected_items_tab
         CONTEXT = lt_context
         PROPERTIES_SOURCE = lt_properties_source
         PROPERTIES_TARGET = lt_properties_target
         INFO_OBJECTS_WITH_TASK = lt_info_objects_with_task
         EMPTY_FOLDERS = lt_empty_folders
         RESULT_INFO_OBJECTS = lt_result_info_objects
         RESULT_PROPERTIES = lt_result_properties
         BAD_OBJECTS = lt_bad_objects
. " INFO_OBJECTS_DISPLAY_LIST




ABAP code using 7.40 inline data declarations to call FM INFO_OBJECTS_DISPLAY_LIST

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.

"SELECT single UCOMM FROM SY INTO @DATA(ld_task).
DATA(ld_task) = 'DOCU'.
 
 
 
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_suppress_context_reset).
DATA(ld_suppress_context_reset) = ' '.
 
 
DATA(ld_popup) = ' '.
 
"SELECT single UCOMM FROM SY INTO @DATA(ld_action).
 
 
 
 
 
 
DATA(ld_top_of_page_header) = ' '.
 
DATA(ld_new_mode) = ' '.
 
 
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_suppress_authority_check).
DATA(ld_suppress_authority_check) = 'X'.
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_no_docking).
DATA(ld_no_docking) = 'X'.
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_dock_repid).
DATA(ld_dock_repid) = ' '.
 
 
"SELECT single DYNNR FROM SY INTO @DATA(ld_dock_dynnr).
DATA(ld_dock_dynnr) = ' '.
 
 


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!