SAP RSPLSSE_ALV_POPUP Function Module for ALV Grid as Popup









RSPLSSE_ALV_POPUP is a standard rsplsse alv popup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ALV Grid as Popup 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 rsplsse alv popup FM, simply by entering the name RSPLSSE_ALV_POPUP into the relevant SAP transaction such as SE37 or SE38.

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



Function RSPLSSE_ALV_POPUP 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 'RSPLSSE_ALV_POPUP'"ALV Grid as Popup
EXPORTING
IT_OUTTAB = "
I_STRUCTURE_NAME = "Table Name
* I_START_COLUMN = 30 "
* I_START_ROW = 10 "
* I_WINDOW_WIDTH = 30 "
* I_WINDOW_HEIGTH = 10 "
* I_WINDOW_TITLE = "
.



IMPORTING Parameters details for RSPLSSE_ALV_POPUP

IT_OUTTAB -

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

I_STRUCTURE_NAME - Table Name

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

I_START_COLUMN -

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

I_START_ROW -

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

I_WINDOW_WIDTH -

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

I_WINDOW_HEIGTH -

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

I_WINDOW_TITLE -

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

Copy and paste ABAP code example for RSPLSSE_ALV_POPUP 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_it_outtab  TYPE STANDARD TABLE, "   
lv_i_structure_name  TYPE TABNAME, "   
lv_i_start_column  TYPE I, "   30
lv_i_start_row  TYPE I, "   10
lv_i_window_width  TYPE I, "   30
lv_i_window_heigth  TYPE I, "   10
lv_i_window_title  TYPE C. "   

  CALL FUNCTION 'RSPLSSE_ALV_POPUP'  "ALV Grid as Popup
    EXPORTING
         IT_OUTTAB = lv_it_outtab
         I_STRUCTURE_NAME = lv_i_structure_name
         I_START_COLUMN = lv_i_start_column
         I_START_ROW = lv_i_start_row
         I_WINDOW_WIDTH = lv_i_window_width
         I_WINDOW_HEIGTH = lv_i_window_heigth
         I_WINDOW_TITLE = lv_i_window_title
. " RSPLSSE_ALV_POPUP




ABAP code using 7.40 inline data declarations to call FM RSPLSSE_ALV_POPUP

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_start_column) = 30.
 
DATA(ld_i_start_row) = 10.
 
DATA(ld_i_window_width) = 30.
 
DATA(ld_i_window_heigth) = 10.
 
 


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!