PL060F01 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 PL060F01 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: Include PL060F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RPL_DATA_ENRICH CALL FUNCTION 'RPL_DATA_ENRICH' EXPORTING pi_call_from = c_overview CHANGING px_ve_items = ve_items EXCEPTIONS OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = 'RWRPL060' i_internal_tabname = 'VIEW' i_structure_name = 'WVMI_ALV_PAROV' i_client_never_display = 'X' CHANGING ct_fieldcat = g_fieldcatalog EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RWRPL060' i_callback_pf_status_set = 'ALV_STATUS_SET' i_callback_user_command = 'ALV_USER_COMMAND' * ACC-RST-B i_grid_title = sy-title * ACC-RST-E is_layout = g_layout it_fieldcat = g_fieldcatalog i_save = g_save is_variant = g_variant * ACC-RST-B it_except_qinfo = gt_exc * ACC-RST_E TABLES t_outtab = view EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_save = g_save CHANGING cs_variant = gx_variant EXCEPTIONS not_found = 2.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = g_variant i_save = g_save IMPORTING e_exit = g_exit es_variant = gx_variant EXCEPTIONS not_found = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING i_save = g_save CHANGING cs_variant = gx_variant.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = l_icon * TEXT = ' ' info = l_info * ADD_STDINF = 'X' IMPORTING RESULT = l_result EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
POPUP_GET_VALUES CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING popup_title = 'Korrektur Nachschubbestandsführung'(007) IMPORTING returncode = answer TABLES fields = fields EXCEPTIONS error_in_fields = 1 OTHERS = 2.
RPL_INV_CHANGE CALL FUNCTION 'RPL_INV_CHANGE' EXPORTING commit_and_wait = wrplt_true TABLES pi_pos_list = pos_items pe_error_mess = error_list EXCEPTIONS error_occurred = 1 OTHERS = 2.
WR20_CHECK_CLASSTYPE CALL FUNCTION 'WR20_CHECK_CLASSTYPE' EXPORTING i_bgapp = c_bgapp_rpl i_class = pi_class i_popup = 'X' TABLES o_klah = klah_tab EXCEPTIONS invalid_parameters = 1 no_entries_found = 2 one_entry_found = 3 more_entries_found = 4 user_abbort = 5 invalid_period = 6 OTHERS = 7.
CLAF_OBJECTS_OF_CLASS CALL FUNCTION 'CLAF_OBJECTS_OF_CLASS' EXPORTING class = pi_class * CLASSES = ' ' classtext = 'X' classtype = klah_tab-klart TABLES t_class = class_tab t_objectdata = data_tab t_objects = customers_of_class EXCEPTIONS no_classification = 1 invalid_class_type = 2 OTHERS = 3.
MARC_SINGLE_READ CALL FUNCTION 'MARC_SINGLE_READ' EXPORTING matnr = view-matnr werks = view-werks IMPORTING wmarc = marc_item EXCEPTIONS lock_on_marc = 1 lock_system_error = 2 wrong_call = 3 not_found = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.