SAP RSVAREXIT_0P_2OGL_FSVERSN_1 Function Module for SAP-Exit: Financial Statement Version









RSVAREXIT_0P_2OGL_FSVERSN_1 is a standard rsvarexit 0p 2ogl fsversn 1 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAP-Exit: Financial Statement Version 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 rsvarexit 0p 2ogl fsversn 1 FM, simply by entering the name RSVAREXIT_0P_2OGL_FSVERSN_1 into the relevant SAP transaction such as SE37 or SE38.

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



Function RSVAREXIT_0P_2OGL_FSVERSN_1 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 'RSVAREXIT_0P_2OGL_FSVERSN_1'"SAP-Exit: Financial Statement Version
EXPORTING
I_VNAM = "Name (ID) of a Report Variable
I_VARTYP = "Type of a Report Variable
I_IOBJNM = "InfoObject
I_S_COB_PRO = "InfoObject Properties (in Context of InfoCube / ODS Object)
I_S_RKB1D = "Control Bar OLAP Processor
I_S_RKB1F = "
I_THX_VAR = "Table of All Variables
* I_STEP = "

IMPORTING
E_T_RANGE = "

EXCEPTIONS
UNKNOWN_VARIABLE = 1 UNEXPECTED_VARTYPE = 2 INVALID_PERIV = 3 NO_PROCESSING = 4
.



IMPORTING Parameters details for RSVAREXIT_0P_2OGL_FSVERSN_1

I_VNAM - Name (ID) of a Report Variable

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

I_VARTYP - Type of a Report Variable

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

I_IOBJNM - InfoObject

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

I_S_COB_PRO - InfoObject Properties (in Context of InfoCube / ODS Object)

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

I_S_RKB1D - Control Bar OLAP Processor

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

I_S_RKB1F -

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

I_THX_VAR - Table of All Variables

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

I_STEP -

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

EXPORTING Parameters details for RSVAREXIT_0P_2OGL_FSVERSN_1

E_T_RANGE -

Data type: RSR_T_RANGESID
Optional: No
Call by Reference: Yes

EXCEPTIONS details

UNKNOWN_VARIABLE -

Data type:
Optional: No
Call by Reference: Yes

UNEXPECTED_VARTYPE -

Data type:
Optional: No
Call by Reference: Yes

INVALID_PERIV -

Data type:
Optional: No
Call by Reference: Yes

NO_PROCESSING -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RSVAREXIT_0P_2OGL_FSVERSN_1 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_vnam  TYPE RSZGLOBV-VNAM, "   
lv_e_t_range  TYPE RSR_T_RANGESID, "   
lv_unknown_variable  TYPE RSR_T_RANGESID, "   
lv_i_vartyp  TYPE RSZGLOBV-VARTYP, "   
lv_unexpected_vartype  TYPE RSZGLOBV, "   
lv_i_iobjnm  TYPE RSZGLOBV-IOBJNM, "   
lv_invalid_periv  TYPE RSZGLOBV, "   
lv_i_s_cob_pro  TYPE RSD_S_COB_PRO, "   
lv_no_processing  TYPE RSD_S_COB_PRO, "   
lv_i_s_rkb1d  TYPE RSR_S_RKB1D, "   
lv_i_s_rkb1f  TYPE RRO01_S_RKB1F, "   
lv_i_thx_var  TYPE RRO01_THX_VAR, "   
lv_i_step  TYPE I. "   

  CALL FUNCTION 'RSVAREXIT_0P_2OGL_FSVERSN_1'  "SAP-Exit: Financial Statement Version
    EXPORTING
         I_VNAM = lv_i_vnam
         I_VARTYP = lv_i_vartyp
         I_IOBJNM = lv_i_iobjnm
         I_S_COB_PRO = lv_i_s_cob_pro
         I_S_RKB1D = lv_i_s_rkb1d
         I_S_RKB1F = lv_i_s_rkb1f
         I_THX_VAR = lv_i_thx_var
         I_STEP = lv_i_step
    IMPORTING
         E_T_RANGE = lv_e_t_range
    EXCEPTIONS
        UNKNOWN_VARIABLE = 1
        UNEXPECTED_VARTYPE = 2
        INVALID_PERIV = 3
        NO_PROCESSING = 4
. " RSVAREXIT_0P_2OGL_FSVERSN_1




ABAP code using 7.40 inline data declarations to call FM RSVAREXIT_0P_2OGL_FSVERSN_1

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 VNAM FROM RSZGLOBV INTO @DATA(ld_i_vnam).
 
 
 
"SELECT single VARTYP FROM RSZGLOBV INTO @DATA(ld_i_vartyp).
 
 
"SELECT single IOBJNM FROM RSZGLOBV INTO @DATA(ld_i_iobjnm).
 
 
 
 
 
 
 
 


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!