SAP SCPRMP_COMP_BCSET_TAB_ABSTRACT Function Module for
SCPRMP_COMP_BCSET_TAB_ABSTRACT is a standard scprmp comp bcset tab abstract 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 scprmp comp bcset tab abstract FM, simply by entering the name SCPRMP_COMP_BCSET_TAB_ABSTRACT into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCPRMP
Program Name: SAPLSCPRMP
Main Program: SAPLSCPRMP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCPRMP_COMP_BCSET_TAB_ABSTRACT 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 'SCPRMP_COMP_BCSET_TAB_ABSTRACT'".
EXPORTING
PT_BCSETS = "
* P_CHECK_INCLUDED_FIELDS = ' ' "
* P_UPDATE_ALLOWED = ' ' "
* P_DESTINATION = 'NONE' "
* PT_LANGVECTOR = "
* P_CATEGORY = 'S' "
* P_MASTERCHECK = ' ' "
* P_PRINT_HEADER = ' ' "
* P_PRINT_OVERVIEW = ' ' "
* P_PRINT_WIDTH = 150 "
* P_CALLING_FROM = ' ' "
* P_CONSISTENCY_CHECK = ' ' "
EXCEPTIONS
NO_AUTHORITY = 1
IMPORTING Parameters details for SCPRMP_COMP_BCSET_TAB_ABSTRACT
PT_BCSETS -
Data type: SCPR_BCSETSOptional: No
Call by Reference: Yes
P_CHECK_INCLUDED_FIELDS -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_UPDATE_ALLOWED -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_DESTINATION -
Data type: RFCDESTDefault: 'NONE'
Optional: Yes
Call by Reference: Yes
PT_LANGVECTOR -
Data type: SCPR_LANGUAGESOptional: Yes
Call by Reference: Yes
P_CATEGORY -
Data type: SCPR_CTGRYDefault: 'S'
Optional: Yes
Call by Reference: Yes
P_MASTERCHECK -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_PRINT_HEADER -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_PRINT_OVERVIEW -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_PRINT_WIDTH -
Data type: IDefault: 150
Optional: Yes
Call by Reference: Yes
P_CALLING_FROM -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
P_CONSISTENCY_CHECK -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_AUTHORITY -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCPRMP_COMP_BCSET_TAB_ABSTRACT 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_pt_bcsets | TYPE SCPR_BCSETS, " | |||
| lv_no_authority | TYPE SCPR_BCSETS, " | |||
| lv_p_check_included_fields | TYPE CHAR1, " SPACE | |||
| lv_p_update_allowed | TYPE CHAR1, " SPACE | |||
| lv_p_destination | TYPE RFCDEST, " 'NONE' | |||
| lv_pt_langvector | TYPE SCPR_LANGUAGES, " | |||
| lv_p_category | TYPE SCPR_CTGRY, " 'S' | |||
| lv_p_mastercheck | TYPE CHAR1, " SPACE | |||
| lv_p_print_header | TYPE CHAR1, " SPACE | |||
| lv_p_print_overview | TYPE CHAR1, " SPACE | |||
| lv_p_print_width | TYPE I, " 150 | |||
| lv_p_calling_from | TYPE CHAR1, " SPACE | |||
| lv_p_consistency_check | TYPE CHAR1. " SPACE |
|   CALL FUNCTION 'SCPRMP_COMP_BCSET_TAB_ABSTRACT' " |
| EXPORTING | ||
| PT_BCSETS | = lv_pt_bcsets | |
| P_CHECK_INCLUDED_FIELDS | = lv_p_check_included_fields | |
| P_UPDATE_ALLOWED | = lv_p_update_allowed | |
| P_DESTINATION | = lv_p_destination | |
| PT_LANGVECTOR | = lv_pt_langvector | |
| P_CATEGORY | = lv_p_category | |
| P_MASTERCHECK | = lv_p_mastercheck | |
| P_PRINT_HEADER | = lv_p_print_header | |
| P_PRINT_OVERVIEW | = lv_p_print_overview | |
| P_PRINT_WIDTH | = lv_p_print_width | |
| P_CALLING_FROM | = lv_p_calling_from | |
| P_CONSISTENCY_CHECK | = lv_p_consistency_check | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| . " SCPRMP_COMP_BCSET_TAB_ABSTRACT | ||
ABAP code using 7.40 inline data declarations to call FM SCPRMP_COMP_BCSET_TAB_ABSTRACT
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_p_check_included_fields) | = ' '. | |||
| DATA(ld_p_update_allowed) | = ' '. | |||
| DATA(ld_p_destination) | = 'NONE'. | |||
| DATA(ld_p_category) | = 'S'. | |||
| DATA(ld_p_mastercheck) | = ' '. | |||
| DATA(ld_p_print_header) | = ' '. | |||
| DATA(ld_p_print_overview) | = ' '. | |||
| DATA(ld_p_print_width) | = 150. | |||
| DATA(ld_p_calling_from) | = ' '. | |||
| DATA(ld_p_consistency_check) | = ' '. | |||
Search for further information about these or an SAP related objects