SAP SCPRPRINT_PRINT_BCSET_DATA Function Module for









SCPRPRINT_PRINT_BCSET_DATA is a standard scprprint print bcset data 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 print bcset data FM, simply by entering the name SCPRPRINT_PRINT_BCSET_DATA 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_PRINT_BCSET_DATA 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_PRINT_BCSET_DATA'"
EXPORTING
BCSET_NAME = "
* IMG_PATH = ' ' "Single-Character Flag
* MAXIMALE_AUSGABEBREITE = 120 "MS SQL int
* VARIABLENUEBERSICHT = ' ' "Single-Character Flag
* ACT_ID = ' ' "BC Sets: Activation Log and Links Key
* CATEGORY = ' ' "
* BCSET_UEBERSICHT = 'X' "Single-Character Flag
* TABELLEN_UEBERSICHT = 'X' "Single-Character Flag
* DATENSATZ_UEBERSICHT = 'X' "Single-Character Flag
* FELDUEBERSICHT = ' ' "Single-Character Flag
* MEHRSPRACHIG = ' ' "Single-Character Flag
* ALLE_TABELLENFELDER = ' ' "Single-Character Flag
* DRUCKAUSGABE = ' ' "Single-Character Flag
.



IMPORTING Parameters details for SCPRPRINT_PRINT_BCSET_DATA

BCSET_NAME -

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

IMG_PATH - Single-Character Flag

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

MAXIMALE_AUSGABEBREITE - MS SQL int

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

VARIABLENUEBERSICHT - Single-Character Flag

Data type: CHAR1
Default: 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_HANDL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

CATEGORY -

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

BCSET_UEBERSICHT - Single-Character Flag

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

TABELLEN_UEBERSICHT - Single-Character Flag

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

DATENSATZ_UEBERSICHT - Single-Character Flag

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

FELDUEBERSICHT - Single-Character Flag

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

MEHRSPRACHIG - Single-Character Flag

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

ALLE_TABELLENFELDER - Single-Character Flag

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

DRUCKAUSGABE - Single-Character Flag

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

Copy and paste ABAP code example for SCPRPRINT_PRINT_BCSET_DATA 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_name  TYPE SCPR_ID, "   
lv_img_path  TYPE CHAR1, "   SPACE
lv_maximale_ausgabebreite  TYPE I, "   120
lv_variablenuebersicht  TYPE CHAR1, "   SPACE
lv_act_id  TYPE SCPR_HANDL, "   SPACE
lv_category  TYPE SCPR_CTGRY, "   SPACE
lv_bcset_uebersicht  TYPE CHAR1, "   'X'
lv_tabellen_uebersicht  TYPE CHAR1, "   'X'
lv_datensatz_uebersicht  TYPE CHAR1, "   'X'
lv_felduebersicht  TYPE CHAR1, "   SPACE
lv_mehrsprachig  TYPE CHAR1, "   SPACE
lv_alle_tabellenfelder  TYPE CHAR1, "   SPACE
lv_druckausgabe  TYPE CHAR1. "   SPACE

  CALL FUNCTION 'SCPRPRINT_PRINT_BCSET_DATA'  "
    EXPORTING
         BCSET_NAME = lv_bcset_name
         IMG_PATH = lv_img_path
         MAXIMALE_AUSGABEBREITE = lv_maximale_ausgabebreite
         VARIABLENUEBERSICHT = lv_variablenuebersicht
         ACT_ID = lv_act_id
         CATEGORY = lv_category
         BCSET_UEBERSICHT = lv_bcset_uebersicht
         TABELLEN_UEBERSICHT = lv_tabellen_uebersicht
         DATENSATZ_UEBERSICHT = lv_datensatz_uebersicht
         FELDUEBERSICHT = lv_felduebersicht
         MEHRSPRACHIG = lv_mehrsprachig
         ALLE_TABELLENFELDER = lv_alle_tabellenfelder
         DRUCKAUSGABE = lv_druckausgabe
. " SCPRPRINT_PRINT_BCSET_DATA




ABAP code using 7.40 inline data declarations to call FM SCPRPRINT_PRINT_BCSET_DATA

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_img_path) = ' '.
 
DATA(ld_maximale_ausgabebreite) = 120.
 
DATA(ld_variablenuebersicht) = ' '.
 
DATA(ld_act_id) = ' '.
 
DATA(ld_category) = ' '.
 
DATA(ld_bcset_uebersicht) = 'X'.
 
DATA(ld_tabellen_uebersicht) = 'X'.
 
DATA(ld_datensatz_uebersicht) = 'X'.
 
DATA(ld_felduebersicht) = ' '.
 
DATA(ld_mehrsprachig) = ' '.
 
DATA(ld_alle_tabellenfelder) = ' '.
 
DATA(ld_druckausgabe) = ' '.
 


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!