PPSFCFRM 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 PPSFCFRM 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: Form declarations for PPSFCACT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = sy-cprog TABLES selection_table = t_params.
RS_LIST_SELECTION_TABLE CALL FUNCTION 'RS_LIST_SELECTION_TABLE' EXPORTING report = report seltext = 'X' * DYN_RANGE = newpage = ' ' * SCREENNR = 1000 TABLES sel_tab = t_params EXCEPTIONS sel_tab_empty = 0 OTHERS = 0.
ORDER_CHANGE_FOR_ACTIVITY CALL FUNCTION 'ORDER_CHANGE_FOR_ACTIVITY' EXPORTING testrun = testrun flg_term = flg_term * flg_btch = flg_btch flg_cost = flg_cost * flg_rele = flg_rele flg_tecl = flg_tecl * flg_tecr = flg_tecr * flg_prnt = flg_prnt * FLG_VERF = FLG_VERF flg_capa = flg_capa flg_lvs = flg_lvs flg_clos = flg_clos maxnumber = maxcount init_tables = yx export_msg_to_memory = ' ' TABLES table_of_messages = message_table caufv_tab = caufvtab EXCEPTIONS nothing_to_do = 0 wrong_selid = 0 OTHERS = 0.
CO_ZF_AUTHORITY_CHECK CALL FUNCTION 'CO_ZF_AUTHORITY_CHECK' EXPORTING i_autyp = lt_caufv-autyp i_auart = lt_caufv-auart i_werks = lt_caufv-werks i_trtyp = aendern i_chk_cat_act = space EXCEPTIONS no_auth_cat_act = 1 no_auth_type_plant = 2 no_auth_cat_typ_plant_act = 3 incorrect_parameters = 4 OTHERS = 5.
STATUS_BUFFER_REFRESH CALL FUNCTION 'STATUS_BUFFER_REFRESH'.
STATUS_CHECK_BY_SELSCHEM_MULTI CALL FUNCTION 'STATUS_CHECK_BY_SELSCHEM_MULTI' EXPORTING selschem = selid IMPORTING status_objects_deleted = l_flg_objects_deleted TABLES objnr_tab = lt_objnr.
ORDER_CHANGE_FOR_ACTIVITY CALL FUNCTION 'ORDER_CHANGE_FOR_ACTIVITY' STARTING NEW TASK taskname DESTINATION IN GROUP DEFAULT PERFORMING return_msg ON END OF TASK EXPORTING testrun = testrun flg_term = flg_term * flg_btch = flg_btch flg_cost = flg_cost * flg_rele = flg_rele * flg_prnt = flg_prnt * FLG_VERF = FLG_VERF flg_capa = flg_capa flg_tecl = flg_tecl flg_lvs = flg_lvs flg_clos = flg_clos maxnumber = maxcount init_tables = yx export_msg_to_memory = ' ' i_flg_no_dialog = yx TABLES table_of_messages = message_table caufv_tab = caufv_task EXCEPTIONS nothing_to_do = 01 wrong_selid = 02 communication_failure = 03 system_failure = 04 resource_failure = 05 OTHERS = 06.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.