SAP S_ISSUE_DISPLAY Function Module for









S_ISSUE_DISPLAY is a standard s issue display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 s issue display FM, simply by entering the name S_ISSUE_DISPLAY into the relevant SAP transaction such as SE37 or SE38.

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



Function S_ISSUE_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 'S_ISSUE_DISPLAY'"
EXPORTING
* DISPLAY_MODE = 'X' "
* NO_ALV_GRID = ' ' "
* APPLICATION_RANGE = "
* ACTUAL_DATA = ' ' "
* WITHOUT_TCSE_DSCR = ' ' "

TABLES
* STRUC_ID_TABLE = "Hierarchy tool node IDs
* FILTER_ID_TABLE = "Hierarchy tool node IDs
* ISSUE_ALV = "Issue Management: Display Table
* MESSAGE_TC = "

EXCEPTIONS
NO_DATA_SELECTED = 1
.



IMPORTING Parameters details for S_ISSUE_DISPLAY

DISPLAY_MODE -

Data type: FLAG
Default: 'X'
Optional: Yes
Call by Reference: Yes

NO_ALV_GRID -

Data type: FLAG
Default: ' '
Optional: Yes
Call by Reference: Yes

APPLICATION_RANGE -

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

ACTUAL_DATA -

Data type: FLAG
Default: ' '
Optional: Yes
Call by Reference: Yes

WITHOUT_TCSE_DSCR -

Data type: FLAG
Default: ' '
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for S_ISSUE_DISPLAY

STRUC_ID_TABLE - Hierarchy tool node IDs

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

FILTER_ID_TABLE - Hierarchy tool node IDs

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

ISSUE_ALV - Issue Management: Display Table

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

MESSAGE_TC -

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

EXCEPTIONS details

NO_DATA_SELECTED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for S_ISSUE_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:
lv_display_mode  TYPE FLAG, "   'X'
lt_struc_id_table  TYPE STANDARD TABLE OF HIER_NODE_IDS, "   
lv_no_data_selected  TYPE HIER_NODE_IDS, "   
lv_no_alv_grid  TYPE FLAG, "   ' '
lt_filter_id_table  TYPE STANDARD TABLE OF HIER_NODE_IDS, "   
lt_issue_alv  TYPE STANDARD TABLE OF TABTYPE_ISSUE_ALV, "   
lv_application_range  TYPE FLAG, "   
lt_message_tc  TYPE STANDARD TABLE OF ISSUE_TC, "   
lv_actual_data  TYPE FLAG, "   ' '
lv_without_tcse_dscr  TYPE FLAG. "   ' '

  CALL FUNCTION 'S_ISSUE_DISPLAY'  "
    EXPORTING
         DISPLAY_MODE = lv_display_mode
         NO_ALV_GRID = lv_no_alv_grid
         APPLICATION_RANGE = lv_application_range
         ACTUAL_DATA = lv_actual_data
         WITHOUT_TCSE_DSCR = lv_without_tcse_dscr
    TABLES
         STRUC_ID_TABLE = lt_struc_id_table
         FILTER_ID_TABLE = lt_filter_id_table
         ISSUE_ALV = lt_issue_alt
         MESSAGE_TC = lt_message_tc
    EXCEPTIONS
        NO_DATA_SELECTED = 1
. " S_ISSUE_DISPLAY




ABAP code using 7.40 inline data declarations to call FM S_ISSUE_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.

DATA(ld_display_mode) = 'X'.
 
 
 
DATA(ld_no_alv_grid) = ' '.
 
 
 
 
 
DATA(ld_actual_data) = ' '.
 
DATA(ld_without_tcse_dscr) = ' '.
 


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!