RFVIMEGN_OLD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program enables you to write existing rental units to a file...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 RFVIMEGN_OLD 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.
Selection Text: LDS_NAME = Logical Name
Selection Text: INV = Number Assignment (I, E, N)
Selection Text: INTNUM = Internal Number Assignment
Selection Text: EXTNUM = External Number Assignment
Selection Text: SO_SWENR = Business Entity
Selection Text: SO_SMENR = Rental Unit
Selection Text: SO_BUKRS = Company Code
Selection Text: MYNODATA = NODATA Indicator
Selection Text: MIT_USER = With User Fields
Selection Text: MIT_UML = With Apportionment Units
Selection Text: MIT_PS = With Project System
Selection Text: MIT_PM = With Plant Maintenance
Selection Text: MIT_PART = With Partners
Selection Text: MIT_MERK = With Fixtures/Fittings Charac.
Selection Text: MIT_KOND = With Conditions
Selection Text: MIT_FLAE = With Areas
Selection Text: MIT_EIGE = With Owners
Selection Text: MIT_ADR = With Addresses
Title: Save Rental Unit in File
Text Symbol: 001 = General Parameters
Text Symbol: 002 = Dependent Data
Text Symbol: 003 = General Data
Text Symbol: 005 = Technical Details
Text Symbol: 010 = Physical File Name:
Text Symbol: 100 = Write File to Application Server
Text Symbol: 101 = With Logical File Name
Text Symbol: 102 = Write File to Presentation Server
Text Symbol: 103 = With Physical File Name
INCLUDE RFVIBIMG.
INCLUDE RFVIMET1.
INCLUDE RFVICNGP.
INCLUDE RFVIMET2.
INCLUDE RFVIMEG1.
No SAP DATABASE tables are accessed within this REPORT code!
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = D020S-PROG DYNUMB = D020S-DNUM TABLES DYNPFIELDS = DYNP_VALUE_TAB EXCEPTIONS INVALID_ABAPWORKAREA = 04 INVALID_DYNPROFIELD = 08 INVALID_DYNPRONAME = 12 INVALID_DYNPRONUMMER = 16 INVALID_REQUEST = 20 NO_FIELDDESCRIPTION = 24 UNDEFIND_ERROR = 28.
WS_FILENAME_GET CALL FUNCTION 'WS_FILENAME_GET' EXPORTING DEF_FILENAME = SPACE DEF_PATH = OS_NAME MASK = MASK MODE = 'O' TITLE = TEXT-005 IMPORTING FILENAME = OS_NAME * rc = dummy EXCEPTIONS INV_WINSYS = 04 NO_BATCH = 08 SELECTION_CANCEL = 12 SELECTION_ERROR = 16.
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING LOGICAL_FILENAME = LDS_NAME IMPORTING FILE_NAME = DS_NAME EXCEPTIONS FILE_NOT_FOUND = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.