SAA_HELPF01 is a standard ABAP INCLUDE 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 SAA_HELPF01 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
AUTHORITY_CHECK CALL FUNCTION 'AUTHORITY_CHECK' EXPORTING FIELD1 = 'SAAFKT' OBJECT = 'S_SAA_ADMI' USER = SY-UNAME VALUE1 = 'ADM ' EXCEPTIONS USER_DONT_EXIST = 1 USER_IS_AUTHORIZED = 2 USER_NOT_AUTHORIZED = 3 USER_IS_LOCKED = 4 OTHERS = 5.
DOCU_INIT CALL FUNCTION 'DOCU_INIT' EXPORTING ID = LV_ID OBJECT = LV_OBJECT LANGU = LV_LANGU TYP = LV_TYP IMPORTING XDOKIL = LS_DOKIL.
DOCU_READ CALL FUNCTION 'DOCU_READ' EXPORTING ID = LV_ID LANGU = LV_LANGU OBJECT = LV_OBJECT TYP = LV_TYP VERSION = LS_DOKIL-VERSION IMPORTING HEAD = LS_HEADER TABLES LINE = LT_LINES.
CONVERT_ITF_TO_HTML CALL FUNCTION 'CONVERT_ITF_TO_HTML' EXPORTING I_HEADER = LS_HEADER I_FUNCNAME = 'HELP_DOCULINES_SHOW_HTML_LINK' TABLES T_ITF_TEXT = LT_LINES[] T_HTML_TEXT = LT_HTML[] EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.