FIAA_HELP_CLASS_EDITOR 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 FIAA_HELP_CLASS_EDITOR 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_ATTRIB = Display Attributes
Selection Text: P_METHOD = Display Methods
Selection Text: P_CLASS = D .
Title: Editing of Classes of Individual Includes
Text Symbol: DEF = Local Class Definition
Text Symbol: FRM = Main Program
Text Symbol: IMP = Local Class Implementation
Text Symbol: MAC = Local Macros
Text Symbol: MXX = Method Implementation
Text Symbol: PBL = Public Section
Text Symbol: PRO = Protected Section
Text Symbol: PRV = Private Section
INCLUDE FAAHELP_CLASS_EDITORTOP.
INCLUDE FAAHELP_CLASS_EDITORLCLDEF.
No SAP DATABASE tables are accessed within this REPORT code!
SEO_CLASS_EXISTENCE_CHECK CALL FUNCTION 'SEO_CLASS_EXISTENCE_CHECK' EXPORTING clskey = ls_classkey EXCEPTIONS not_specified = 1 not_existing = 2 is_interface = 3 no_text = 4 inconsistent = 5 OTHERS = 6.
DDIF_DOMA_GET CALL FUNCTION 'DDIF_DOMA_GET' EXPORTING name = 'SEOTYPTYPE' langu = sy-langu TABLES dd07v_tab = gt_dom_typtype.
DDIF_DOMA_GET CALL FUNCTION 'DDIF_DOMA_GET' EXPORTING name = 'SEOEXPOSE' langu = sy-langu TABLES dd07v_tab = gt_dom_exposure.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.