SAP GET_BALANCE_REG Function Module for Maintains opening/closing balance of raw, capital materials









GET_BALANCE_REG is a standard get balance reg SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Maintains opening/closing balance of raw, capital materials 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 reg FM, simply by entering the name GET_BALANCE_REG 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_REG 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_REG'"Maintains opening/closing balance of raw, capital materials
EXPORTING
* I_DATUM = SY-DATUM "Date on which opening/closing bal. reqd.
I_EXGRP = "Excise group
* I_WERKS = "Plant
I_MATNR = "Material number
I_CAPIND = "
I_FUNC = "Function - (R)ead,(U)pdate,(C)arry fwd.
* I_REGBAL = "Structure of J_2IREGBAL

IMPORTING
E_REGBAL = "Structure of J_2IREGBAL

EXCEPTIONS
NOT_FOUND = 1 PARAMETER_ERROR = 2 ERROR_OCCURED = 3
.



IMPORTING Parameters details for GET_BALANCE_REG

I_DATUM - Date on which opening/closing bal. reqd.

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

I_EXGRP - Excise group

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

I_WERKS - Plant

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

I_MATNR - Material number

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

I_CAPIND -

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

I_FUNC - Function - (R)ead,(U)pdate,(C)arry fwd.

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

I_REGBAL - Structure of J_2IREGBAL

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

EXPORTING Parameters details for GET_BALANCE_REG

E_REGBAL - Structure of J_2IREGBAL

Data type: J_2IREGBAL
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_REG 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_regbal  TYPE J_2IREGBAL, "   
lv_not_found  TYPE J_2IREGBAL, "   
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_capind  TYPE J_2IREGBAL-CAPIND, "   
lv_i_func  TYPE J_2ICOMM-C1, "   
lv_i_regbal  TYPE J_2IREGBAL. "   

  CALL FUNCTION 'GET_BALANCE_REG'  "Maintains opening/closing balance of raw, capital materials
    EXPORTING
         I_DATUM = lv_i_datum
         I_EXGRP = lv_i_exgrp
         I_WERKS = lv_i_werks
         I_MATNR = lv_i_matnr
         I_CAPIND = lv_i_capind
         I_FUNC = lv_i_func
         I_REGBAL = lv_i_regbal
    IMPORTING
         E_REGBAL = lv_e_regbal
    EXCEPTIONS
        NOT_FOUND = 1
        PARAMETER_ERROR = 2
        ERROR_OCCURED = 3
. " GET_BALANCE_REG




ABAP code using 7.40 inline data declarations to call FM GET_BALANCE_REG

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 CAPIND FROM J_2IREGBAL INTO @DATA(ld_i_capind).
 
"SELECT single C1 FROM J_2ICOMM INTO @DATA(ld_i_func).
 
 


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!