SAP Reports / Programs

FAGLSKF_CREATE_FUNCTION SAP ABAP Report - Creation of Update Function Modules







FAGLSKF_CREATE_FUNCTION 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 FAGLSKF_CREATE_FUNCTION into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT FAGLSKF_CREATE_FUNCTION. "Basic submit
SUBMIT FAGLSKF_CREATE_FUNCTION AND RETURN. "Return to original report after report execution complete
SUBMIT FAGLSKF_CREATE_FUNCTION VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Creation of Update Function Modules


INCLUDES used within this REPORT FAGLSKF_CREATE_FUNCTION

READ REPORT LD_FUNCTION_INCLUDE INTO LT_REP.
INSERT REPORT LD_FUNCTION_INCLUDE FROM LT_REP.
READ REPORT LD_FUNCTION_INCLUDE INTO LT_REP.
INSERT REPORT LD_FUNCTION_INCLUDE FROM LT_REP.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING funcname = ld_funcname IMPORTING group = ld_function_pool2 include = ld_function_include EXCEPTIONS function_not_exist = 1 OTHERS = 2.

FUNCTION_DELETE CALL FUNCTION 'FUNCTION_DELETE' EXPORTING funcname = ld_funcname suppress_delete_longtext = ' ' EXCEPTIONS error_message = 1 OTHERS = 2.

FUNCTION_CREATE CALL FUNCTION 'FUNCTION_CREATE' EXPORTING corrnum = ' ' funcname = ld_funcname function_pool = ld_function_pool interface_global = ' ' remote_call = ' ' short_text = ld_text suppress_corr_check = 'X' update_task = '1' namespace = ' ' suppress_enqueue = ' ' save_active = 'X' exception_class = ' ' IMPORTING function_include = ld_function_include TABLES exception_list = lt_rsexc export_parameter = lt_rsexp import_parameter = lt_rsimp parameter_docu = lt_rsfdo tables_parameter = lt_rstbl changing_parameter = lt_rscha EXCEPTIONS double_task = 1 error_message = 2 function_already_exists = 3 invalid_function_pool = 4 invalid_name = 5 too_many_functions = 6 OTHERS = 7.

FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING funcname = ld_funcname IMPORTING group = ld_function_pool2 include = ld_function_include EXCEPTIONS function_not_exist = 1 OTHERS = 2.

FUNCTION_DELETE CALL FUNCTION 'FUNCTION_DELETE' EXPORTING funcname = ld_funcname suppress_delete_longtext = ' ' EXCEPTIONS error_message = 1 OTHERS = 2.

FAGLSKF_GET_ALL_TABINFOS CALL FUNCTION 'FAGLSKF_GET_ALL_TABINFOS' TABLES et_tabinfo = lt_tabinfo.

FUNCTION_CREATE CALL FUNCTION 'FUNCTION_CREATE' EXPORTING corrnum = ' ' funcname = ld_funcname function_pool = ld_function_pool interface_global = ' ' remote_call = ' ' short_text = ld_text suppress_corr_check = 'X' update_task = '1' namespace = ' ' suppress_enqueue = ' ' save_active = 'X' exception_class = ' ' IMPORTING function_include = ld_function_include TABLES exception_list = lt_rsexc export_parameter = lt_rsexp import_parameter = lt_rsimp parameter_docu = lt_rsfdo tables_parameter = lt_rstbl changing_parameter = lt_rscha EXCEPTIONS double_task = 1 error_message = 2 function_already_exists = 3 invalid_function_pool = 4 invalid_name = 5 too_many_functions = 6 OTHERS = 7.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name FAGLSKF_CREATE_FUNCTION or its description.