PSARCF02 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 PSARCF02 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: Forms
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
PS_PROJECT_FILL_BUFFER CALL FUNCTION 'PS_PROJECT_FILL_BUFFER' EXPORTING read_for_delete = flag_read_for_delete read_for_archive = flag_read_for_archive only_wbs_elements = flag_read_for_check debug = flag_debug TABLES t_project_version = itab_selected_versions EXCEPTIONS not_found = 0.
PS_VSORDER_FILL_BUFFER CALL FUNCTION 'PS_VSORDER_FILL_BUFFER' EXPORTING read_for_delete = flag_read_for_delete read_for_archive = flag_read_for_archive debug = flag_debug TABLES t_version = itab_selected_versions EXCEPTIONS not_found = 0.
PS_ORDER_FILL_BUFFER CALL FUNCTION 'PS_ORDER_FILL_BUFFER' EXPORTING read_for_delete = loc_create_archive "n_1013605 with_enqueue = loc_with_enqueue debug = debug_mode IMPORTING delflg_error = loc_delflg_error TABLES t_net_number_import = itab_selected_nets t_net_number_export = itab_selected_nets t_net_error_exp = network_error_tab EXCEPTIONS enqueue_error = 4 OTHERS = 8.
PS_VSORDER_FILL_BUFFER CALL FUNCTION 'PS_VSORDER_FILL_BUFFER' EXPORTING read_for_delete = delete_mode read_for_archive = con_on debug = debug_mode TABLES t_order = itab_selected_nets t_version = itab_net_versions_cat1 EXCEPTIONS not_found = 0.
PS_PROJECT_FILL_BUFFER CALL FUNCTION 'PS_PROJECT_FILL_BUFFER' EXPORTING read_for_delete = delete_mode read_for_archive = loc_create_archive with_enqueue = loc_with_enqueue only_wbs_elements = loc_only_wbs_elements debug = debug_mode TABLES t_project_intern_number = tmp_proj_pspnr t_project_version = itab_project_versions_cat1 t_project_with_error = project_error_tab EXCEPTIONS OTHERS = 8.
PS_PROJECT_FILL_BUFFER " call FUNCTION 'PS_PROJECT_FILL_BUFFER' " exPORTING " FLAG_READ_FOR_DELETE = delete_data " FLAG_READ_FOR_ARCHIVE = create_archive_file " FLAG_READ_FOR_CHECK = testmode " TABLES " T_PROJECT_INTERN_NUMBER = tmp_proj_pspnr " T_PROJECT_VERSION = ITAB_PROJECT_VERSIONS_CAT1 " EXCEPTIONS " NO_AUTHORITY = 8.
PS_PROJECT_ERROR_PROTOCOL " call FUNCTION 'PS_PROJECT_ERROR_PROTOCOL'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.