RFFMABL1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RFFMABL1 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: P_OBJID = FM area
Selection Text: P_NAME = Changed by
Selection Text: P_LANGU = ?...(P_LANGU)
Selection Text: P_KEY = Complementary key
Selection Text: P_DATE = Change from
Selection Text: P_CLASS = File name
Title: FIFM: Display Change Documents for Master Data
Text Symbol: 020 = Name :
Text Symbol: 019 = Field name
Text Symbol: 018 = Table key :
Text Symbol: 017 = Table name :
Text Symbol: 016 = Transaction:
Text Symbol: 015 = Time :
Text Symbol: 014 = Day :
Text Symbol: 013 = Change no. :
Text Symbol: 012 = Object ID :
Text Symbol: 011 = Class :
Text Symbol: 010 = Client :
Text Symbol: 009 = Deletion
Text Symbol: 008 = New input
Text Symbol: 007 = New value :
Text Symbol: 006 = Old value :
Text Symbol: 005 = Field chngd :
Text Symbol: 004 = Changed on :
Text Symbol: 003 = Changed by :
Text Symbol: 002 = Keys :
Text Symbol: 001 = Table :
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING ARCHIVE_HANDLE = 0 DATE_OF_CHANGE = P_DATE OBJECTCLASS = P_CLASS OBJECTID = P_OBJID TIME_OF_CHANGE = '000000' USERNAME = P_NAME TABLES I_CDHDR = I_KOPFSAETZE EXCEPTIONS NO_POSITION_FOUND = 01 WRONG_ACCESS_TO_ARCHIVE = 02.
CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING ARCHIVE_HANDLE = 0 CHANGENUMBER = I_KOPFSAETZE-CHANGENR TABLEKEY = ' ' TABLENAME = ' ' * IMPORTING * HEADER = HEAD TABLES EDITPOS = I_POSITIONEN EXCEPTIONS NO_POSITION_FOUND = 01 WRONG_ACCESS_TO_ARCHIVE = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.