RFPOSXEXTEND is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Repair program RFPOSXEXTEND carries out a comparison between the special fields saved in table T021S for the FI line item display, and the line item structure RFPOSXEXT in the Data Dictionary...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 RFPOSXEXTEND 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: Correction: Change/Activate RFPOSXEXT
Text Symbol: 001 = Changing and activating a structure in the Data Dictionary
Text Symbol: 002 = Basic structure:
Text Symbol: 003 = Table of extension fields:
Text Symbol: 004 = Extended structure:
Text Symbol: 005 = Do you want to activate the extended structure
Text Symbol: 006 = Successfully completed
Text Symbol: 007 = Terminated with error
Text Symbol: 008 = Note important information in the program documentation
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_WITH_MESSAGE call function 'POPUP_TO_CONFIRM_WITH_MESSAGE' exporting DEFAULTOPTION = 'N' diagnosetext1 = dtxt1 DIAGNOSETEXT2 = dtxt2 DIAGNOSETEXT3 = dtxt3 textline1 = text-008 TEXTLINE2 = text-005 titel = text-001 * START_COLUMN = 25 * START_ROW = 6 * CANCEL_DISPLAY = 'X' IMPORTING ANSWER = answer.
ITEM_STRUC_EXTENSION call function 'ITEM_STRUC_EXTENSION' EXPORTING basic_strucname = 'RFPOSX' ext_strucname = 'RFPOSXEXT' ext_fields_tabname = 'T021S' i_lstcl = '2' x_transport = space EXCEPTIONS get_error = 1 put_error = 2 act_error = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.