SAP SCPR_TEMPL_ADJUST_RECNR Function Module for
SCPR_TEMPL_ADJUST_RECNR is a standard scpr templ adjust recnr 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 scpr templ adjust recnr FM, simply by entering the name SCPR_TEMPL_ADJUST_RECNR into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCPRTM
Program Name: SAPLSCPRTM
Main Program: SAPLSCPRTM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCPR_TEMPL_ADJUST_RECNR 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 'SCPR_TEMPL_ADJUST_RECNR'".
EXPORTING
PWA_BCSET = "
* PT_RECORDS = "
* P_ONLY_VALL_RECNR = ' ' "
CHANGING
PT_NEW_RECA = "
PT_NEW_VALS = "
PT_NEW_VALL = "
IMPORTING Parameters details for SCPR_TEMPL_ADJUST_RECNR
PWA_BCSET -
Data type: SCPR_BCSETOptional: No
Call by Reference: Yes
PT_RECORDS -
Data type: SCPR_RECORDSOptional: Yes
Call by Reference: Yes
P_ONLY_VALL_RECNR -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
CHANGING Parameters details for SCPR_TEMPL_ADJUST_RECNR
PT_NEW_RECA -
Data type: SCPR_RECA_TABOptional: No
Call by Reference: Yes
PT_NEW_VALS -
Data type: SCPR_VALS_TABOptional: No
Call by Reference: Yes
PT_NEW_VALL -
Data type: SCPR_VALL_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCPR_TEMPL_ADJUST_RECNR 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_pwa_bcset | TYPE SCPR_BCSET, " | |||
| lv_pt_new_reca | TYPE SCPR_RECA_TAB, " | |||
| lv_pt_records | TYPE SCPR_RECORDS, " | |||
| lv_pt_new_vals | TYPE SCPR_VALS_TAB, " | |||
| lv_pt_new_vall | TYPE SCPR_VALL_TAB, " | |||
| lv_p_only_vall_recnr | TYPE CHAR1. " SPACE |
|   CALL FUNCTION 'SCPR_TEMPL_ADJUST_RECNR' " |
| EXPORTING | ||
| PWA_BCSET | = lv_pwa_bcset | |
| PT_RECORDS | = lv_pt_records | |
| P_ONLY_VALL_RECNR | = lv_p_only_vall_recnr | |
| CHANGING | ||
| PT_NEW_RECA | = lv_pt_new_reca | |
| PT_NEW_VALS | = lv_pt_new_vals | |
| PT_NEW_VALL | = lv_pt_new_vall | |
| . " SCPR_TEMPL_ADJUST_RECNR | ||
ABAP code using 7.40 inline data declarations to call FM SCPR_TEMPL_ADJUST_RECNR
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_only_vall_recnr) | = ' '. | |||
Search for further information about these or an SAP related objects