SAP GET_BALANCE_RG1_FOR_RT12 Function Module for Reads RG1 opening/closing balances on a given date









GET_BALANCE_RG1_FOR_RT12 is a standard get balance rg1 for rt12 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reads RG1 opening/closing balances on a given date 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 get balance rg1 for rt12 FM, simply by entering the name GET_BALANCE_RG1_FOR_RT12 into the relevant SAP transaction such as SE37 or SE38.

Function Group: J2I6
Program Name: SAPLJ2I6
Main Program: SAPLJ2I6
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function GET_BALANCE_RG1_FOR_RT12 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 'GET_BALANCE_RG1_FOR_RT12'"Reads RG1 opening/closing balances on a given date
EXPORTING
* I_DATUM = SY-DATUM "
I_EXGRP = "
* I_WERKS = "
I_MATNR = "
I_FORM = "

IMPORTING
E_RG1BAL = "RG1 Balance record

EXCEPTIONS
NOT_FOUND = 1 PARAMETER_ERROR = 2 ERROR_OCCURED = 3
.



IMPORTING Parameters details for GET_BALANCE_RG1_FOR_RT12

I_DATUM -

Data type: SY-DATUM
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_EXGRP -

Data type: J_1IPART1-EXGRP
Optional: No
Call by Reference: No ( called with pass by value option)

I_WERKS -

Data type: T001W-WERKS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_MATNR -

Data type: MARA-MATNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_FORM -

Data type: J_2IRG1BAL-FORM
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for GET_BALANCE_RG1_FOR_RT12

E_RG1BAL - RG1 Balance record

Data type: J_2IRG1BAL
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_FOUND - Not found

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

PARAMETER_ERROR - Parameter error

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_OCCURED - Unknown error occured

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for GET_BALANCE_RG1_FOR_RT12 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_datum  TYPE SY-DATUM, "   SY-DATUM
lv_e_rg1bal  TYPE J_2IRG1BAL, "   
lv_not_found  TYPE J_2IRG1BAL, "   
lv_i_exgrp  TYPE J_1IPART1-EXGRP, "   
lv_parameter_error  TYPE J_1IPART1, "   
lv_i_werks  TYPE T001W-WERKS, "   
lv_error_occured  TYPE T001W, "   
lv_i_matnr  TYPE MARA-MATNR, "   
lv_i_form  TYPE J_2IRG1BAL-FORM. "   

  CALL FUNCTION 'GET_BALANCE_RG1_FOR_RT12'  "Reads RG1 opening/closing balances on a given date
    EXPORTING
         I_DATUM = lv_i_datum
         I_EXGRP = lv_i_exgrp
         I_WERKS = lv_i_werks
         I_MATNR = lv_i_matnr
         I_FORM = lv_i_form
    IMPORTING
         E_RG1BAL = lv_e_rg1bal
    EXCEPTIONS
        NOT_FOUND = 1
        PARAMETER_ERROR = 2
        ERROR_OCCURED = 3
. " GET_BALANCE_RG1_FOR_RT12




ABAP code using 7.40 inline data declarations to call FM GET_BALANCE_RG1_FOR_RT12

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 DATUM FROM SY INTO @DATA(ld_i_datum).
DATA(ld_i_datum) = SY-DATUM.
 
 
 
"SELECT single EXGRP FROM J_1IPART1 INTO @DATA(ld_i_exgrp).
 
 
"SELECT single WERKS FROM T001W INTO @DATA(ld_i_werks).
 
 
"SELECT single MATNR FROM MARA INTO @DATA(ld_i_matnr).
 
"SELECT single FORM FROM J_2IRG1BAL INTO @DATA(ld_i_form).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!