SAP RELEASE_PARAMETERS_READ Function Module for Read Record from Release Parameter Table TZFSP
RELEASE_PARAMETERS_READ is a standard release parameters read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Record from Release Parameter Table TZFSP 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 release parameters read FM, simply by entering the name RELEASE_PARAMETERS_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: FWFD
Program Name: SAPLFWFD
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RELEASE_PARAMETERS_READ 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 'RELEASE_PARAMETERS_READ'"Read Record from Release Parameter Table TZFSP.
EXPORTING
I_BSCHWRT = "Amount in Local Currency
I_BUKRS = "Company Code
I_PARAM1 = "Parameter1 (für WP: Produktart)
I_PARAM2 = "Parameter2 (für WP: irrelevant)
I_SFGOBJ = "Release Object
I_WAERS = "Currency
TABLES
INTTZFSP = "interne Tabelle für Freigabeparameter
EXCEPTIONS
MORE_THAN_ONE_ENTRY_FOUND = 1 NO_ENTRY_FOUND = 2
IMPORTING Parameters details for RELEASE_PARAMETERS_READ
I_BSCHWRT - Amount in Local Currency
Data type: VWBEPP-BHWHROptional: No
Call by Reference: No ( called with pass by value option)
I_BUKRS - Company Code
Data type: T001-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_PARAM1 - Parameter1 (für WP: Produktart)
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_PARAM2 - Parameter2 (für WP: irrelevant)
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_SFGOBJ - Release Object
Data type: TZFSP-SFGOBJOptional: No
Call by Reference: No ( called with pass by value option)
I_WAERS - Currency
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RELEASE_PARAMETERS_READ
INTTZFSP - interne Tabelle für Freigabeparameter
Data type: TZFSPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
MORE_THAN_ONE_ENTRY_FOUND - mehr als ein Satz gefunden: FB arbeitet falsch
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_ENTRY_FOUND - es wurde kein Satz gefunden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RELEASE_PARAMETERS_READ 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: | ||||
| lt_inttzfsp | TYPE STANDARD TABLE OF TZFSP, " | |||
| lv_i_bschwrt | TYPE VWBEPP-BHWHR, " | |||
| lv_more_than_one_entry_found | TYPE VWBEPP, " | |||
| lv_i_bukrs | TYPE T001-BUKRS, " | |||
| lv_no_entry_found | TYPE T001, " | |||
| lv_i_param1 | TYPE T001, " | |||
| lv_i_param2 | TYPE T001, " | |||
| lv_i_sfgobj | TYPE TZFSP-SFGOBJ, " | |||
| lv_i_waers | TYPE TZFSP. " |
|   CALL FUNCTION 'RELEASE_PARAMETERS_READ' "Read Record from Release Parameter Table TZFSP |
| EXPORTING | ||
| I_BSCHWRT | = lv_i_bschwrt | |
| I_BUKRS | = lv_i_bukrs | |
| I_PARAM1 | = lv_i_param1 | |
| I_PARAM2 | = lv_i_param2 | |
| I_SFGOBJ | = lv_i_sfgobj | |
| I_WAERS | = lv_i_waers | |
| TABLES | ||
| INTTZFSP | = lt_inttzfsp | |
| EXCEPTIONS | ||
| MORE_THAN_ONE_ENTRY_FOUND = 1 | ||
| NO_ENTRY_FOUND = 2 | ||
| . " RELEASE_PARAMETERS_READ | ||
ABAP code using 7.40 inline data declarations to call FM RELEASE_PARAMETERS_READ
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.| "SELECT single BHWHR FROM VWBEPP INTO @DATA(ld_i_bschwrt). | ||||
| "SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single SFGOBJ FROM TZFSP INTO @DATA(ld_i_sfgobj). | ||||
Search for further information about these or an SAP related objects