SAP SCPRPRINT_SELECTION_SCREEN Function Module for
SCPRPRINT_SELECTION_SCREEN is a standard scprprint selection screen 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 scprprint selection screen FM, simply by entering the name SCPRPRINT_SELECTION_SCREEN into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCPRPRINT
Program Name: SAPLSCPRPRINT
Main Program: SAPLSCPRPRINT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCPRPRINT_SELECTION_SCREEN 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 'SCPRPRINT_SELECTION_SCREEN'".
EXPORTING
* BCSET = ' ' "Business Configuration Set
* I_ALLE_TABELLENFELDER = ' ' "Single-Character Flag
* I_IMG_PATH = ' ' "Single-Character Flag
* I_MAXIMALE_AUSGABEBREITE = 120 "Dummy for B20 int1 (Local Everywhere)
* I_VARIABLENUEBERSICHT = ' ' "Single-Character Flag
* CATEGORY = ' ' "
* ACT_ID = ' ' "BC Sets: Activation Log and Links Key
* DRUCKAUSGABE = ' ' "Single-Character Flag
* I_BCSET_UEBERSICHT = 'X' "Single-Character Flag
* I_TABELLEN_UEBERSICHT = 'X' "Single-Character Flag
* I_DATENSATZ_UEBERSICHT = 'X' "Single-Character Flag
* I_FELDUEBERSICHT = ' ' "Single-Character Flag
* I_MEHRSPRACHIG = ' ' "Single-Character Flag
IMPORTING
E_BCSET_UEBERSICHT = "Single-Character Flag
E_TABELLEN_UEBERSICHT = "Single-Character Flag
E_DATENSATZ_UEBERSICHT = "Single-Character Flag
E_FELDUEBERSICHT = "Single-Character Flag
E_MEHRSPRACHIG = "Single-Character Flag
E_ALLE_TABELLENFELDER = "Single-Character Flag
E_IMG_PATH = "Single-Character Flag
E_MAXIMALE_AUSGABEBREITE = "
E_VARIABLENUEBERSICHT = "Single-Character Flag
IMPORTING Parameters details for SCPRPRINT_SELECTION_SCREEN
BCSET - Business Configuration Set
Data type: SCPR_IDDefault: SPACE
Optional: No
Call by Reference: No ( called with pass by value option)
I_ALLE_TABELLENFELDER - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_IMG_PATH - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MAXIMALE_AUSGABEBREITE - Dummy for B20 int1 (Local Everywhere)
Data type: IDefault: 120
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VARIABLENUEBERSICHT - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CATEGORY -
Data type: SCPR_CTGRYDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
ACT_ID - BC Sets: Activation Log and Links Key
Data type: SCPR_HANDLDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
DRUCKAUSGABE - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_BCSET_UEBERSICHT - Single-Character Flag
Data type: CHAR1Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TABELLEN_UEBERSICHT - Single-Character Flag
Data type: CHAR1Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DATENSATZ_UEBERSICHT - Single-Character Flag
Data type: CHAR1Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FELDUEBERSICHT - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MEHRSPRACHIG - Single-Character Flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SCPRPRINT_SELECTION_SCREEN
E_BCSET_UEBERSICHT - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_TABELLEN_UEBERSICHT - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_DATENSATZ_UEBERSICHT - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_FELDUEBERSICHT - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_MEHRSPRACHIG - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_ALLE_TABELLENFELDER - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_IMG_PATH - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
E_MAXIMALE_AUSGABEBREITE -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_VARIABLENUEBERSICHT - Single-Character Flag
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SCPRPRINT_SELECTION_SCREEN 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_bcset | TYPE SCPR_ID, " SPACE | |||
| lv_e_bcset_uebersicht | TYPE CHAR1, " | |||
| lv_i_alle_tabellenfelder | TYPE CHAR1, " SPACE | |||
| lv_i_img_path | TYPE CHAR1, " SPACE | |||
| lv_i_maximale_ausgabebreite | TYPE I, " 120 | |||
| lv_i_variablenuebersicht | TYPE CHAR1, " SPACE | |||
| lv_category | TYPE SCPR_CTGRY, " SPACE | |||
| lv_e_tabellen_uebersicht | TYPE CHAR1, " | |||
| lv_act_id | TYPE SCPR_HANDL, " SPACE | |||
| lv_e_datensatz_uebersicht | TYPE CHAR1, " | |||
| lv_druckausgabe | TYPE CHAR1, " SPACE | |||
| lv_e_felduebersicht | TYPE CHAR1, " | |||
| lv_e_mehrsprachig | TYPE CHAR1, " | |||
| lv_i_bcset_uebersicht | TYPE CHAR1, " 'X' | |||
| lv_e_alle_tabellenfelder | TYPE CHAR1, " | |||
| lv_i_tabellen_uebersicht | TYPE CHAR1, " 'X' | |||
| lv_e_img_path | TYPE CHAR1, " | |||
| lv_i_datensatz_uebersicht | TYPE CHAR1, " 'X' | |||
| lv_i_felduebersicht | TYPE CHAR1, " SPACE | |||
| lv_e_maximale_ausgabebreite | TYPE I, " | |||
| lv_i_mehrsprachig | TYPE CHAR1, " SPACE | |||
| lv_e_variablenuebersicht | TYPE CHAR1. " |
|   CALL FUNCTION 'SCPRPRINT_SELECTION_SCREEN' " |
| EXPORTING | ||
| BCSET | = lv_bcset | |
| I_ALLE_TABELLENFELDER | = lv_i_alle_tabellenfelder | |
| I_IMG_PATH | = lv_i_img_path | |
| I_MAXIMALE_AUSGABEBREITE | = lv_i_maximale_ausgabebreite | |
| I_VARIABLENUEBERSICHT | = lv_i_variablenuebersicht | |
| CATEGORY | = lv_category | |
| ACT_ID | = lv_act_id | |
| DRUCKAUSGABE | = lv_druckausgabe | |
| I_BCSET_UEBERSICHT | = lv_i_bcset_uebersicht | |
| I_TABELLEN_UEBERSICHT | = lv_i_tabellen_uebersicht | |
| I_DATENSATZ_UEBERSICHT | = lv_i_datensatz_uebersicht | |
| I_FELDUEBERSICHT | = lv_i_felduebersicht | |
| I_MEHRSPRACHIG | = lv_i_mehrsprachig | |
| IMPORTING | ||
| E_BCSET_UEBERSICHT | = lv_e_bcset_uebersicht | |
| E_TABELLEN_UEBERSICHT | = lv_e_tabellen_uebersicht | |
| E_DATENSATZ_UEBERSICHT | = lv_e_datensatz_uebersicht | |
| E_FELDUEBERSICHT | = lv_e_felduebersicht | |
| E_MEHRSPRACHIG | = lv_e_mehrsprachig | |
| E_ALLE_TABELLENFELDER | = lv_e_alle_tabellenfelder | |
| E_IMG_PATH | = lv_e_img_path | |
| E_MAXIMALE_AUSGABEBREITE | = lv_e_maximale_ausgabebreite | |
| E_VARIABLENUEBERSICHT | = lv_e_variablenuebersicht | |
| . " SCPRPRINT_SELECTION_SCREEN | ||
ABAP code using 7.40 inline data declarations to call FM SCPRPRINT_SELECTION_SCREEN
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_bcset) | = ' '. | |||
| DATA(ld_i_alle_tabellenfelder) | = ' '. | |||
| DATA(ld_i_img_path) | = ' '. | |||
| DATA(ld_i_maximale_ausgabebreite) | = 120. | |||
| DATA(ld_i_variablenuebersicht) | = ' '. | |||
| DATA(ld_category) | = ' '. | |||
| DATA(ld_act_id) | = ' '. | |||
| DATA(ld_druckausgabe) | = ' '. | |||
| DATA(ld_i_bcset_uebersicht) | = 'X'. | |||
| DATA(ld_i_tabellen_uebersicht) | = 'X'. | |||
| DATA(ld_i_datensatz_uebersicht) | = 'X'. | |||
| DATA(ld_i_felduebersicht) | = ' '. | |||
| DATA(ld_i_mehrsprachig) | = ' '. | |||
Search for further information about these or an SAP related objects