SAP REUSE_ALV_GRID_DISPLAY_LVC Function Module for









REUSE_ALV_GRID_DISPLAY_LVC is a standard reuse alv grid display lvc 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 reuse alv grid display lvc FM, simply by entering the name REUSE_ALV_GRID_DISPLAY_LVC into the relevant SAP transaction such as SE37 or SE38.

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



Function REUSE_ALV_GRID_DISPLAY_LVC 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 'REUSE_ALV_GRID_DISPLAY_LVC'"
EXPORTING
* I_INTERFACE_CHECK = ' ' "Interface consistency check log output
* I_STRUCTURE_NAME = "Internal Output Table Structure Name
* I_BACKGROUND_ID = ' ' "Object ID of wallpaper
* I_GRID_TITLE = "Control title
* I_GRID_SETTINGS = "Grid settings
* IS_LAYOUT_LVC = "List Layout Specifications
* IT_FIELDCAT_LVC = "Field Catalog with Field Descriptions
* IT_EXCLUDING = "Table of inactive function codes
* IT_SPECIAL_GROUPS_LVC = "Grouping fields for column selection
* IT_SORT_LVC = "Sort criteria for first list display
* IT_FILTER_LVC = "Filter criteria for first list output
* I_BYPASSING_BUFFER = "Skip All Buffers?
* IT_HYPERLINK = "Hyperlinks
* IS_SEL_HIDE = "Selection information modification
* I_DEFAULT = 'X' "Initial variant active/inactive logic
* I_SAVE = ' ' "Variants Can be Saved
* IS_VARIANT = "Variant information
* IT_EVENTS = "Table of events to perform
* IT_EVENT_EXIT = "Standard fcode exit requests table
* IS_PRINT_LVC = "Print information
* IS_REPREP_ID_LVC = "Initialization key for Re/Re interface
* I_SCREEN_START_COLUMN = 0 "Coordinates for list in dialog box
* I_BUFFER_ACTIVE = "Buffer active
* I_SCREEN_START_LINE = 0 "Coordinates for list in dialog box
* I_SCREEN_END_COLUMN = 0 "Coordinates for list in dialog box
* I_SCREEN_END_LINE = 0 "Coordinates for list in dialog box
* I_HTML_HEIGHT_TOP = "
* I_HTML_HEIGHT_END = "
* IT_ALV_GRAPHICS = "
* IT_EXCEPT_QINFO_LVC = "
* IR_SALV_FULLSCREEN_ADAPTER = "
* I_CALLBACK_PROGRAM = ' ' "Name of the calling program
* I_CALLBACK_PF_STATUS_SET = ' ' "Set EXIT routine to status
* I_CALLBACK_USER_COMMAND = ' ' "EXIT routine for command handling
* I_CALLBACK_TOP_OF_PAGE = ' ' "EXIT routine for handling TOP-OF-PAGE
* I_CALLBACK_HTML_TOP_OF_PAGE = ' ' "EXIT routine for HTML TOP-OF-PAGE
* I_CALLBACK_HTML_END_OF_LIST = ' ' "EXIT routine for HTML END-OF-LIST

IMPORTING
E_EXIT_CAUSED_BY_CALLER = "Delete list in CALLBACK_USER_COMMAND
ES_EXIT_CAUSED_BY_USER = "How the user left the list

TABLES
T_OUTTAB = "Table with data to be displayed

EXCEPTIONS
PROGRAM_ERROR = 1
.



IMPORTING Parameters details for REUSE_ALV_GRID_DISPLAY_LVC

I_INTERFACE_CHECK - Interface consistency check log output

Data type:
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_STRUCTURE_NAME - Internal Output Table Structure Name

Data type: DD02L-TABNAME
Optional: Yes
Call by Reference: Yes

I_BACKGROUND_ID - Object ID of wallpaper

Data type: SDYDO_KEY
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_GRID_TITLE - Control title

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

I_GRID_SETTINGS - Grid settings

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

IS_LAYOUT_LVC - List Layout Specifications

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

IT_FIELDCAT_LVC - Field Catalog with Field Descriptions

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

IT_EXCLUDING - Table of inactive function codes

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

IT_SPECIAL_GROUPS_LVC - Grouping fields for column selection

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

IT_SORT_LVC - Sort criteria for first list display

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

IT_FILTER_LVC - Filter criteria for first list output

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

I_BYPASSING_BUFFER - Skip All Buffers?

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

IT_HYPERLINK - Hyperlinks

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

IS_SEL_HIDE - Selection information modification

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

I_DEFAULT - Initial variant active/inactive logic

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

I_SAVE - Variants Can be Saved

Data type:
Default: SPACE
Optional: Yes
Call by Reference: Yes

IS_VARIANT - Variant information

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

IT_EVENTS - Table of events to perform

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

IT_EVENT_EXIT - Standard fcode exit requests table

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

IS_PRINT_LVC - Print information

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

IS_REPREP_ID_LVC - Initialization key for Re/Re interface

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

I_SCREEN_START_COLUMN - Coordinates for list in dialog box

Data type:
Optional: Yes
Call by Reference: Yes

I_BUFFER_ACTIVE - Buffer active

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

I_SCREEN_START_LINE - Coordinates for list in dialog box

Data type:
Optional: Yes
Call by Reference: Yes

I_SCREEN_END_COLUMN - Coordinates for list in dialog box

Data type:
Optional: Yes
Call by Reference: Yes

I_SCREEN_END_LINE - Coordinates for list in dialog box

Data type:
Optional: Yes
Call by Reference: Yes

I_HTML_HEIGHT_TOP -

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

I_HTML_HEIGHT_END -

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

IT_ALV_GRAPHICS -

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

IT_EXCEPT_QINFO_LVC -

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

IR_SALV_FULLSCREEN_ADAPTER -

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

I_CALLBACK_PROGRAM - Name of the calling program

Data type: SY-REPID
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CALLBACK_PF_STATUS_SET - Set EXIT routine to status

Data type: SLIS_FORMNAME
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CALLBACK_USER_COMMAND - EXIT routine for command handling

Data type: SLIS_FORMNAME
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CALLBACK_TOP_OF_PAGE - EXIT routine for handling TOP-OF-PAGE

Data type: SLIS_FORMNAME
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CALLBACK_HTML_TOP_OF_PAGE - EXIT routine for HTML TOP-OF-PAGE

Data type: SLIS_FORMNAME
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_CALLBACK_HTML_END_OF_LIST - EXIT routine for HTML END-OF-LIST

Data type: SLIS_FORMNAME
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for REUSE_ALV_GRID_DISPLAY_LVC

E_EXIT_CAUSED_BY_CALLER - Delete list in CALLBACK_USER_COMMAND

Data type:
Optional: No
Call by Reference: Yes

ES_EXIT_CAUSED_BY_USER - How the user left the list

Data type: SLIS_EXIT_BY_USER
Optional: No
Call by Reference: Yes

TABLES Parameters details for REUSE_ALV_GRID_DISPLAY_LVC

T_OUTTAB - Table with data to be displayed

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

EXCEPTIONS details

PROGRAM_ERROR - Program Errors

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

Copy and paste ABAP code example for REUSE_ALV_GRID_DISPLAY_LVC 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_t_outtab  TYPE STANDARD TABLE OF STRING, "   
lv_program_error  TYPE STRING, "   
lv_i_interface_check  TYPE STRING, "   SPACE
lv_e_exit_caused_by_caller  TYPE STRING, "   
lv_i_structure_name  TYPE DD02L-TABNAME, "   
lv_i_background_id  TYPE SDYDO_KEY, "   SPACE
lv_i_grid_title  TYPE LVC_TITLE, "   
lv_i_grid_settings  TYPE LVC_S_GLAY, "   
lv_is_layout_lvc  TYPE LVC_S_LAYO, "   
lv_it_fieldcat_lvc  TYPE LVC_T_FCAT, "   
lv_it_excluding  TYPE SLIS_T_EXTAB, "   
lv_it_special_groups_lvc  TYPE LVC_T_SGRP, "   
lv_it_sort_lvc  TYPE LVC_T_SORT, "   
lv_it_filter_lvc  TYPE LVC_T_FILT, "   
lv_i_bypassing_buffer  TYPE CHAR01, "   
lv_es_exit_caused_by_user  TYPE SLIS_EXIT_BY_USER, "   
lv_it_hyperlink  TYPE LVC_T_HYPE, "   
lv_is_sel_hide  TYPE SLIS_SEL_HIDE_ALV, "   
lv_i_default  TYPE SLIS_SEL_HIDE_ALV, "   'X'
lv_i_save  TYPE SLIS_SEL_HIDE_ALV, "   SPACE
lv_is_variant  TYPE DISVARIANT, "   
lv_it_events  TYPE SLIS_T_EVENT, "   
lv_it_event_exit  TYPE SLIS_T_EVENT_EXIT, "   
lv_is_print_lvc  TYPE LVC_S_PRNT, "   
lv_is_reprep_id_lvc  TYPE LVC_S_RPRP, "   
lv_i_screen_start_column  TYPE LVC_S_RPRP, "   0
lv_i_buffer_active  TYPE LVC_S_RPRP, "   
lv_i_screen_start_line  TYPE LVC_S_RPRP, "   0
lv_i_screen_end_column  TYPE LVC_S_RPRP, "   0
lv_i_screen_end_line  TYPE LVC_S_RPRP, "   0
lv_i_html_height_top  TYPE I, "   
lv_i_html_height_end  TYPE I, "   
lv_it_alv_graphics  TYPE DTC_T_TC, "   
lv_it_except_qinfo_lvc  TYPE SLIS_T_QINFO_ALV, "   
lv_ir_salv_fullscreen_adapter  TYPE CL_SALV_FULLSCREEN_ADAPTER, "   
lv_i_callback_program  TYPE SY-REPID, "   SPACE
lv_i_callback_pf_status_set  TYPE SLIS_FORMNAME, "   SPACE
lv_i_callback_user_command  TYPE SLIS_FORMNAME, "   SPACE
lv_i_callback_top_of_page  TYPE SLIS_FORMNAME, "   SPACE
lv_i_callback_html_top_of_page  TYPE SLIS_FORMNAME, "   SPACE
lv_i_callback_html_end_of_list  TYPE SLIS_FORMNAME. "   SPACE

  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'  "
    EXPORTING
         I_INTERFACE_CHECK = lv_i_interface_check
         I_STRUCTURE_NAME = lv_i_structure_name
         I_BACKGROUND_ID = lv_i_background_id
         I_GRID_TITLE = lv_i_grid_title
         I_GRID_SETTINGS = lv_i_grid_settings
         IS_LAYOUT_LVC = lv_is_layout_lvc
         IT_FIELDCAT_LVC = lv_it_fieldcat_lvc
         IT_EXCLUDING = lv_it_excluding
         IT_SPECIAL_GROUPS_LVC = lv_it_special_groups_lvc
         IT_SORT_LVC = lv_it_sort_lvc
         IT_FILTER_LVC = lv_it_filter_lvc
         I_BYPASSING_BUFFER = lv_i_bypassing_buffer
         IT_HYPERLINK = lv_it_hyperlink
         IS_SEL_HIDE = lv_is_sel_hide
         I_DEFAULT = lv_i_default
         I_SAVE = lv_i_save
         IS_VARIANT = lv_is_variant
         IT_EVENTS = lv_it_events
         IT_EVENT_EXIT = lv_it_event_exit
         IS_PRINT_LVC = lv_is_print_lvc
         IS_REPREP_ID_LVC = lv_is_reprep_id_lvc
         I_SCREEN_START_COLUMN = lv_i_screen_start_column
         I_BUFFER_ACTIVE = lv_i_buffer_active
         I_SCREEN_START_LINE = lv_i_screen_start_line
         I_SCREEN_END_COLUMN = lv_i_screen_end_column
         I_SCREEN_END_LINE = lv_i_screen_end_line
         I_HTML_HEIGHT_TOP = lv_i_html_height_top
         I_HTML_HEIGHT_END = lv_i_html_height_end
         IT_ALV_GRAPHICS = lv_it_alv_graphics
         IT_EXCEPT_QINFO_LVC = lv_it_except_qinfo_lvc
         IR_SALV_FULLSCREEN_ADAPTER = lv_ir_salv_fullscreen_adapter
         I_CALLBACK_PROGRAM = lv_i_callback_program
         I_CALLBACK_PF_STATUS_SET = lv_i_callback_pf_status_set
         I_CALLBACK_USER_COMMAND = lv_i_callback_user_command
         I_CALLBACK_TOP_OF_PAGE = lv_i_callback_top_of_page
         I_CALLBACK_HTML_TOP_OF_PAGE = lv_i_callback_html_top_of_page
         I_CALLBACK_HTML_END_OF_LIST = lv_i_callback_html_end_of_list
    IMPORTING
         E_EXIT_CAUSED_BY_CALLER = lv_e_exit_caused_by_caller
         ES_EXIT_CAUSED_BY_USER = lv_es_exit_caused_by_user
    TABLES
         T_OUTTAB = lt_t_outtab
    EXCEPTIONS
        PROGRAM_ERROR = 1
. " REUSE_ALV_GRID_DISPLAY_LVC




ABAP code using 7.40 inline data declarations to call FM REUSE_ALV_GRID_DISPLAY_LVC

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_i_interface_check) = ' '.
 
 
"SELECT single TABNAME FROM DD02L INTO @DATA(ld_i_structure_name).
 
DATA(ld_i_background_id) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_i_default) = 'X'.
 
DATA(ld_i_save) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_i_callback_program).
DATA(ld_i_callback_program) = ' '.
 
DATA(ld_i_callback_pf_status_set) = ' '.
 
DATA(ld_i_callback_user_command) = ' '.
 
DATA(ld_i_callback_top_of_page) = ' '.
 
DATA(ld_i_callback_html_top_of_page) = ' '.
 
DATA(ld_i_callback_html_end_of_list) = ' '.
 


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!