SAP FM_AUTH_CHECK_GRP_BUD_PER Function Module for
FM_AUTH_CHECK_GRP_BUD_PER is a standard fm auth check grp bud per 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 fm auth check grp bud per FM, simply by entering the name FM_AUTH_CHECK_GRP_BUD_PER into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMAU
Program Name: SAPLFMAU
Main Program: SAPLFMAU
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_AUTH_CHECK_GRP_BUD_PER 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 'FM_AUTH_CHECK_GRP_BUD_PER'".
EXPORTING
* IV_BUDGET_PERIOD = "FM: Budget Period
* IV_GEBER = "
* IV_AUTHGRP_BUD_PER = "FM: Fund authorization group
* IV_AUTHGRP_GEBER = "FM: Fund authorization group
* IV_FIKRS = "Financial Management Area
IV_ACTVT = "Activity
IMPORTING
EV_FLG_AUTH = "
IMPORTING Parameters details for FM_AUTH_CHECK_GRP_BUD_PER
IV_BUDGET_PERIOD - FM: Budget Period
Data type: FM_BUDGET_PERIODOptional: Yes
Call by Reference: Yes
IV_GEBER -
Data type: BP_GEBEROptional: Yes
Call by Reference: Yes
IV_AUTHGRP_BUD_PER - FM: Fund authorization group
Data type: FM_BPD_AUTHGRFOptional: Yes
Call by Reference: Yes
IV_AUTHGRP_GEBER - FM: Fund authorization group
Data type: FM_AUTHGRFOptional: Yes
Call by Reference: Yes
IV_FIKRS - Financial Management Area
Data type: FIKRSOptional: Yes
Call by Reference: Yes
IV_ACTVT - Activity
Data type: ACTIV_AUTHOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FM_AUTH_CHECK_GRP_BUD_PER
EV_FLG_AUTH -
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FM_AUTH_CHECK_GRP_BUD_PER 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_ev_flg_auth | TYPE XFELD, " | |||
| lv_iv_budget_period | TYPE FM_BUDGET_PERIOD, " | |||
| lv_iv_geber | TYPE BP_GEBER, " | |||
| lv_iv_authgrp_bud_per | TYPE FM_BPD_AUTHGRF, " | |||
| lv_iv_authgrp_geber | TYPE FM_AUTHGRF, " | |||
| lv_iv_fikrs | TYPE FIKRS, " | |||
| lv_iv_actvt | TYPE ACTIV_AUTH. " |
|   CALL FUNCTION 'FM_AUTH_CHECK_GRP_BUD_PER' " |
| EXPORTING | ||
| IV_BUDGET_PERIOD | = lv_iv_budget_period | |
| IV_GEBER | = lv_iv_geber | |
| IV_AUTHGRP_BUD_PER | = lv_iv_authgrp_bud_per | |
| IV_AUTHGRP_GEBER | = lv_iv_authgrp_geber | |
| IV_FIKRS | = lv_iv_fikrs | |
| IV_ACTVT | = lv_iv_actvt | |
| IMPORTING | ||
| EV_FLG_AUTH | = lv_ev_flg_auth | |
| . " FM_AUTH_CHECK_GRP_BUD_PER | ||
ABAP code using 7.40 inline data declarations to call FM FM_AUTH_CHECK_GRP_BUD_PER
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.Search for further information about these or an SAP related objects