SAP RM_FOI_BALANCES_VT_DSAVC Function Module for RM: VT FO-Integration - Fortschr. der Verwaltungstabellen (CHECK; COMPLETE
RM_FOI_BALANCES_VT_DSAVC is a standard rm foi balances vt dsavc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RM: VT FO-Integration - Fortschr. der Verwaltungstabellen (CHECK; COMPLETE 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 rm foi balances vt dsavc FM, simply by entering the name RM_FOI_BALANCES_VT_DSAVC into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBR9
Program Name: SAPLJBR9
Main Program: SAPLJBR9
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RM_FOI_BALANCES_VT_DSAVC 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 'RM_FOI_BALANCES_VT_DSAVC'"RM: VT FO-Integration - Fortschr. der Verwaltungstabellen (CHECK; COMPLETE.
EXPORTING
I_RMAREA = "Risikomanagementbereich
I_PROGN = "ABAP-Programmname
I_CHECK = "Intensität von Prüfungen
TABLES
I_TAB_JBIXOBEXT = "IS-B: RM Erweiterte Verarbeitungsstruktur JBIXOBJ für FDÜ
I_TAB_JBRSI = "Sichten
I_TAB_JBRSIM = "Zuordnung Merkmale zu den Sichten
I_TAB_JBRRMBM = "Zuordnung der Merkmale zu den RM-Bereichen
C_TAB_ERROR = "IS-B: Schnittstelle zur Fehlerbehandlung
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for RM_FOI_BALANCES_VT_DSAVC
I_RMAREA - Risikomanagementbereich
Data type: JBRRMBM-RMBIDOptional: No
Call by Reference: Yes
I_PROGN - ABAP-Programmname
Data type: TRDIR-NAMEOptional: No
Call by Reference: Yes
I_CHECK - Intensität von Prüfungen
Data type: JBISTRU-CHECKOptional: No
Call by Reference: Yes
TABLES Parameters details for RM_FOI_BALANCES_VT_DSAVC
I_TAB_JBIXOBEXT - IS-B: RM Erweiterte Verarbeitungsstruktur JBIXOBJ für FDÜ
Data type: JBIXOBEXTOptional: No
Call by Reference: Yes
I_TAB_JBRSI - Sichten
Data type: JBRSIOptional: No
Call by Reference: Yes
I_TAB_JBRSIM - Zuordnung Merkmale zu den Sichten
Data type: JBRSIMOptional: No
Call by Reference: Yes
I_TAB_JBRRMBM - Zuordnung der Merkmale zu den RM-Bereichen
Data type: JBRRMBMOptional: No
Call by Reference: Yes
C_TAB_ERROR - IS-B: Schnittstelle zur Fehlerbehandlung
Data type: SPROT_XOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RM_FOI_BALANCES_VT_DSAVC 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_error | TYPE STRING, " | |||
| lv_i_rmarea | TYPE JBRRMBM-RMBID, " | |||
| lt_i_tab_jbixobext | TYPE STANDARD TABLE OF JBIXOBEXT, " | |||
| lv_i_progn | TYPE TRDIR-NAME, " | |||
| lt_i_tab_jbrsi | TYPE STANDARD TABLE OF JBRSI, " | |||
| lv_i_check | TYPE JBISTRU-CHECK, " | |||
| lt_i_tab_jbrsim | TYPE STANDARD TABLE OF JBRSIM, " | |||
| lt_i_tab_jbrrmbm | TYPE STANDARD TABLE OF JBRRMBM, " | |||
| lt_c_tab_error | TYPE STANDARD TABLE OF SPROT_X. " |
|   CALL FUNCTION 'RM_FOI_BALANCES_VT_DSAVC' "RM: VT FO-Integration - Fortschr. der Verwaltungstabellen (CHECK; COMPLETE |
| EXPORTING | ||
| I_RMAREA | = lv_i_rmarea | |
| I_PROGN | = lv_i_progn | |
| I_CHECK | = lv_i_check | |
| TABLES | ||
| I_TAB_JBIXOBEXT | = lt_i_tab_jbixobext | |
| I_TAB_JBRSI | = lt_i_tab_jbrsi | |
| I_TAB_JBRSIM | = lt_i_tab_jbrsim | |
| I_TAB_JBRRMBM | = lt_i_tab_jbrrmbm | |
| C_TAB_ERROR | = lt_c_tab_error | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " RM_FOI_BALANCES_VT_DSAVC | ||
ABAP code using 7.40 inline data declarations to call FM RM_FOI_BALANCES_VT_DSAVC
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 RMBID FROM JBRRMBM INTO @DATA(ld_i_rmarea). | ||||
| "SELECT single NAME FROM TRDIR INTO @DATA(ld_i_progn). | ||||
| "SELECT single CHECK FROM JBISTRU INTO @DATA(ld_i_check). | ||||
Search for further information about these or an SAP related objects