SAP FMUD_REVERSE_HIE_BUDGET Function Module for Reverse Budget for Correction Report RIB-FM
FMUD_REVERSE_HIE_BUDGET is a standard fmud reverse hie budget SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reverse Budget for Correction Report RIB-FM 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 fmud reverse hie budget FM, simply by entering the name FMUD_REVERSE_HIE_BUDGET into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMUD_EVALUATION
Program Name: SAPLFMUD_EVALUATION
Main Program: SAPLFMUD_EVALUATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMUD_REVERSE_HIE_BUDGET 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 'FMUD_REVERSE_HIE_BUDGET'"Reverse Budget for Correction Report RIB-FM.
EXPORTING
IV_BGBELNR = "Document number from budget allocation & structure planning
IV_OBJEKT = "Object number
IV_POSIT = "Item (Internal Commitment Item Number)
IS_FMUDBSEGP = "Part.Payt Item for Customer Invoice of a Rev. Incr. the Bgt
IMPORTING
EV_BGBELNR = "Document number from budget allocation & structure planning
EV_ERROR_FOUND = "Checkbox
EXCEPTIONS
REVERSE_NOT_POSSIBLE = 1
IMPORTING Parameters details for FMUD_REVERSE_HIE_BUDGET
IV_BGBELNR - Document number from budget allocation & structure planning
Data type: BP_BELNROptional: No
Call by Reference: Yes
IV_OBJEKT - Object number
Data type: BP_OBJEKTOptional: No
Call by Reference: Yes
IV_POSIT - Item (Internal Commitment Item Number)
Data type: FM_POSITOptional: No
Call by Reference: Yes
IS_FMUDBSEGP - Part.Payt Item for Customer Invoice of a Rev. Incr. the Bgt
Data type: FMUDBSEGPOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FMUD_REVERSE_HIE_BUDGET
EV_BGBELNR - Document number from budget allocation & structure planning
Data type: BP_BELNROptional: No
Call by Reference: Yes
EV_ERROR_FOUND - Checkbox
Data type: XFELDOptional: No
Call by Reference: Yes
EXCEPTIONS details
REVERSE_NOT_POSSIBLE - Budget reverse in not possible
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMUD_REVERSE_HIE_BUDGET 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_bgbelnr | TYPE BP_BELNR, " | |||
| lv_iv_bgbelnr | TYPE BP_BELNR, " | |||
| lv_reverse_not_possible | TYPE BP_BELNR, " | |||
| lv_iv_objekt | TYPE BP_OBJEKT, " | |||
| lv_ev_error_found | TYPE XFELD, " | |||
| lv_iv_posit | TYPE FM_POSIT, " | |||
| lv_is_fmudbsegp | TYPE FMUDBSEGP. " |
|   CALL FUNCTION 'FMUD_REVERSE_HIE_BUDGET' "Reverse Budget for Correction Report RIB-FM |
| EXPORTING | ||
| IV_BGBELNR | = lv_iv_bgbelnr | |
| IV_OBJEKT | = lv_iv_objekt | |
| IV_POSIT | = lv_iv_posit | |
| IS_FMUDBSEGP | = lv_is_fmudbsegp | |
| IMPORTING | ||
| EV_BGBELNR | = lv_ev_bgbelnr | |
| EV_ERROR_FOUND | = lv_ev_error_found | |
| EXCEPTIONS | ||
| REVERSE_NOT_POSSIBLE = 1 | ||
| . " FMUD_REVERSE_HIE_BUDGET | ||
ABAP code using 7.40 inline data declarations to call FM FMUD_REVERSE_HIE_BUDGET
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