SAP FM16_RELEASE_GROUP_CUSTOMIZING Function Module for
FM16_RELEASE_GROUP_CUSTOMIZING is a standard fm16 release group customizing 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 fm16 release group customizing FM, simply by entering the name FM16_RELEASE_GROUP_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.
Function Group: FM16
Program Name: SAPLFM16
Main Program: SAPLFM16
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM16_RELEASE_GROUP_CUSTOMIZING 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 'FM16_RELEASE_GROUP_CUSTOMIZING'".
EXPORTING
I_FIKRS = "
I_GJAHR = "
* I_ORDER = "
* I_ACTIVITY = "
* I_SUBVO = "
* I_RELGRP = "
IMPORTING
E_NO_RELEASE_GROUPS = "
E_NOT_ASSIGNED = "
E_COVER_INCONSIST = "
E_COVER_INCONSIST_TEXT = "
E_INVALID_RELE_ORDER = "
TABLES
* T_RELGRP = "
* T_ASSIGNED = "
IMPORTING Parameters details for FM16_RELEASE_GROUP_CUSTOMIZING
I_FIKRS -
Data type: BPIN-FIKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_GJAHR -
Data type: BPIN-GJAHROptional: No
Call by Reference: No ( called with pass by value option)
I_ORDER -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ACTIVITY -
Data type: BPIN-VORGAOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SUBVO -
Data type: BPIN-SUBVOOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RELGRP -
Data type: BPIN-VORGAOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FM16_RELEASE_GROUP_CUSTOMIZING
E_NO_RELEASE_GROUPS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_NOT_ASSIGNED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_COVER_INCONSIST -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_COVER_INCONSIST_TEXT -
Data type: FMBUDFRGRP-FRGT5Optional: No
Call by Reference: No ( called with pass by value option)
E_INVALID_RELE_ORDER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FM16_RELEASE_GROUP_CUSTOMIZING
T_RELGRP -
Data type: FMBUDFRGRPOptional: Yes
Call by Reference: No ( called with pass by value option)
T_ASSIGNED -
Data type: FMBUDFRGVOOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FM16_RELEASE_GROUP_CUSTOMIZING 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_i_fikrs | TYPE BPIN-FIKRS, " | |||
| lt_t_relgrp | TYPE STANDARD TABLE OF FMBUDFRGRP, " | |||
| lv_e_no_release_groups | TYPE FMBUDFRGRP, " | |||
| lv_i_gjahr | TYPE BPIN-GJAHR, " | |||
| lt_t_assigned | TYPE STANDARD TABLE OF FMBUDFRGVO, " | |||
| lv_e_not_assigned | TYPE FMBUDFRGVO, " | |||
| lv_i_order | TYPE FMBUDFRGVO, " | |||
| lv_e_cover_inconsist | TYPE FMBUDFRGVO, " | |||
| lv_i_activity | TYPE BPIN-VORGA, " | |||
| lv_e_cover_inconsist_text | TYPE FMBUDFRGRP-FRGT5, " | |||
| lv_i_subvo | TYPE BPIN-SUBVO, " | |||
| lv_e_invalid_rele_order | TYPE BPIN, " | |||
| lv_i_relgrp | TYPE BPIN-VORGA. " |
|   CALL FUNCTION 'FM16_RELEASE_GROUP_CUSTOMIZING' " |
| EXPORTING | ||
| I_FIKRS | = lv_i_fikrs | |
| I_GJAHR | = lv_i_gjahr | |
| I_ORDER | = lv_i_order | |
| I_ACTIVITY | = lv_i_activity | |
| I_SUBVO | = lv_i_subvo | |
| I_RELGRP | = lv_i_relgrp | |
| IMPORTING | ||
| E_NO_RELEASE_GROUPS | = lv_e_no_release_groups | |
| E_NOT_ASSIGNED | = lv_e_not_assigned | |
| E_COVER_INCONSIST | = lv_e_cover_inconsist | |
| E_COVER_INCONSIST_TEXT | = lv_e_cover_inconsist_text | |
| E_INVALID_RELE_ORDER | = lv_e_invalid_rele_order | |
| TABLES | ||
| T_RELGRP | = lt_t_relgrp | |
| T_ASSIGNED | = lt_t_assigned | |
| . " FM16_RELEASE_GROUP_CUSTOMIZING | ||
ABAP code using 7.40 inline data declarations to call FM FM16_RELEASE_GROUP_CUSTOMIZING
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 FIKRS FROM BPIN INTO @DATA(ld_i_fikrs). | ||||
| "SELECT single GJAHR FROM BPIN INTO @DATA(ld_i_gjahr). | ||||
| "SELECT single VORGA FROM BPIN INTO @DATA(ld_i_activity). | ||||
| "SELECT single FRGT5 FROM FMBUDFRGRP INTO @DATA(ld_e_cover_inconsist_text). | ||||
| "SELECT single SUBVO FROM BPIN INTO @DATA(ld_i_subvo). | ||||
| "SELECT single VORGA FROM BPIN INTO @DATA(ld_i_relgrp). | ||||
Search for further information about these or an SAP related objects