RFVIAEUG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With the help of the function module, this report creates a list where you can see, for each settlement unit, the participating rental units, their apportionment factors and the total apportionment factor of all the rental units together...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFVIAEUG into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Allocation per Tenant
Text Symbol: 001 = Val.
Text Symbol: 002 = Total Val.
Text Symbol: 003 = Tenant
Text Symbol: 004 = Vacancy
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ABR_APPORTIONMENT_FACTOR_GET CALL FUNCTION 'ABR_APPORTIONMENT_FACTOR_GET' EXPORTING OBJNR = OBJNR TEXTE_AUSGEBEN = TEXTE TABLES T_ME_UE = T_ME_UE.
ISGP_VZGPO_READ CALL FUNCTION 'ISGP_VZGPO_READ' EXPORTING I_SNUMOBJ = 'VI' I_SOBJEKT = FLE_VIMIMV-INTRENO I_DATE = ls_seldate * I_END_DATE = TABLES YVZGPO = TAB_VZGPO * R_PARTNER = R_ROLETYP = RNG_ROLETYP * R_ROLE = EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
FVZ_PARTNER_IN_PRINTFORM CALL FUNCTION 'FVZ_PARTNER_IN_PRINTFORM' EXPORTING * ADDRESS_INTO_MEMORY = 'X' ADRTYP = TAB_VZGPO-ADR_REF BUKRS_IN = T_ME_UE-BUKRS DATE_IN = ls_seldate NO_ADDRESS = 'X' PARTNR = TAB_VZGPO-PARTNR * ROLETYP = ' ' * LINES = 5 * CNTRY_IN = IMPORTING * anschwa_out = NAME_OUT = FLE_BP000 * adref_out = EXCEPTIONS ADDRESS_NOT_FOUND = 1 PARTNER_NOT_FOUND = 2 OTHERS = 3.
FVMK_KOSTL_OBJECT_GET CALL FUNCTION 'FVMK_KOSTL_OBJECT_GET' EXPORTING DATUM = ls_seldate OBJNR = FLE_VIMIMV-SNKS IMPORTING KOSTL = SAV_KOSTL.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = P_G_REPID I_CALLBACK_PF_STATUS_SET = P_STATUS I_CALLBACK_USER_COMMAND = P_COMMAND IT_FIELDCAT = P_GT_FIELDCAT[] IT_EVENTS = LT_EVENTS I_TABNAME_HEADER = 'P_T_OUTTAB_HEADER' I_TABNAME_ITEM = 'P_T_OUTTAB_ITEM' IS_KEYINFO = GS_KEYINFO I_SAVE = 'A' TABLES T_OUTTAB_HEADER = P_T_OUTTAB_HEADER T_OUTTAB_ITEM = P_T_OUTTAB_ITEM.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFVIAEUG - Allocation per Tenant RFVIAEUG - Allocation per Tenant RFVIAESP - documentation and ABAP source code RFVIAESP - documentation and ABAP source code RFVIAEP0 - Overview of settlement periods for settlement unit with activation RFVIAEP0 - Overview of settlement periods for settlement unit with activation