FAAHELP_CLASS_EDITORLCLIMP 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 FAAHELP_CLASS_EDITORLCLIMP 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!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemtype = gd_systemtype EXCEPTIONS OTHERS = 0.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' position = '00000' object_name = ld_includename object_type = 'PROG'.
AA_CUS_EDIT_CONTENT CALL FUNCTION 'AA_CUS_EDIT_CONTENT' EXPORTING id_object = ld_includename.
SEO_BUFFER_REFRESH CALL FUNCTION 'SEO_BUFFER_REFRESH'.
SEO_BUFFER_INIT CALL FUNCTION 'SEO_BUFFER_INIT'.
SEO_CLASS_GET CALL FUNCTION 'SEO_CLASS_GET' EXPORTING clskey = ls_clskey EXCEPTIONS not_existing = 1 deleted = 2 is_interface = 3 model_only = 4 OTHERS = 5.
SEO_ATTRIBUTE_GET CALL FUNCTION 'SEO_ATTRIBUTE_GET' EXPORTING attkey = gd_attkey IMPORTING attribute = gs_vseoattrib EXCEPTIONS OTHERS = 8.
SEO_ATTRIBUTE_COPY CALL FUNCTION 'SEO_ATTRIBUTE_COPY' EXPORTING attkey = gd_attkey_ref new_attkey = gd_attkey save = seox_true EXCEPTIONS not_existing = 1 deleted = 2 target_not_existing = 3 is_method = 4 is_event = 5 is_type = 6 not_copied = 7 db_error = 8 OTHERS = 9.
SEO_ATTRIBUTE_CHANGE_F_DATA CALL FUNCTION 'SEO_ATTRIBUTE_CHANGE_F_DATA' EXPORTING save = seox_true no_type_source_changes = seox_false CHANGING attribute = gs_vseoattrib EXCEPTIONS not_existing = 1 deleted = 2 is_method = 3 is_event = 4 is_type = 5 not_changed = 6 db_error = 7 OTHERS = 8.
SEO_CLASS_GENERATE_SECTIONS CALL FUNCTION 'SEO_CLASS_GENERATE_SECTIONS' EXPORTING clskey = ls_clskey public = seox_true protected = seox_true private = seox_true suppress_corr = seox_false return_generated_sections_only = seox_false line_size = 255 EXCEPTIONS not_existing = 1 model_only = 2 public_sec_not_generated = 3 protected_sec_not_generated = 4 private_sec_not_generated = 5 public_sec_not_initialised = 6 protected_sec_not_initialised = 7 private_sec_not_initialised = 8 _internal_class_not_existing = 9 OTHERS = 10.
SEO_CLASS_ACTIVATE CALL FUNCTION 'SEO_CLASS_ACTIVATE' EXPORTING clskeys = lt_class EXCEPTIONS not_specified = 1 not_existing = 2 inconsistent = 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.