GRPCRTA_MAIN_SCREEN_FORM 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 GRPCRTA_MAIN_SCREEN_FORM 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 GRPCRTA_MAIN_SCREEN_FORM
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_POPUP_TO_SELECT CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT' EXPORTING i_title = 'Select Source Connector'(l04) i_selection = 'X' i_scroll_to_sel_line = 'X' i_tabname = '1' it_fieldcat = gt_fieldcat IMPORTING es_selfield = wa_sel_field TABLES t_outtab = t_slist[].
AIPC_CONVERT_TO_UPPERCASE CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE' EXPORTING i_input = s_rfcdest i_langu = sy-langu IMPORTING e_output = s_rfcdest.
AIPC_CONVERT_TO_UPPERCASE CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE' EXPORTING i_input = l_rfcdest i_langu = sy-langu IMPORTING e_output = l_rfcdest.
GRPCRTA_PC_SET_DESTINATION CALL FUNCTION 'GRPCRTA_PC_SET_DESTINATION' EXPORTING i_rfcdest = l_rfcdest EXCEPTIONS authority_not_available = 1 destination_not_exist = 2 information_failure = 3 internal_failure = 4 rfc_destination_unknown = 5 OTHERS = 6.
GRPCRTA_PC_SET_DESTINATION CALL FUNCTION 'GRPCRTA_PC_SET_DESTINATION' EXPORTING i_rfcdest = l_rfcdest EXCEPTIONS authority_not_available = 1 destination_not_exist = 2 information_failure = 3 internal_failure = 4 rfc_destination_unknown = 5 OTHERS = 6.
GRPCRTA_PC_GET_GRC_DATA CALL FUNCTION 'GRPCRTA_PC_GET_GRC_DATA' EXPORTING i_rfcdest = p_rfcdest i_flag = c_flag * i_regulationid = g_regulation_id importing e_systeminfo = g_systeminfo TABLES t_timeframe_list = t_f4_timeframe t_timeframe_y_list = t_f4_timeframe_y t_orglist = t_f4_org_list t_processlist = t_f4_process_list t_subprocesslist = t_f4_subpro_list.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = l_retfield dynpprog = g_repid dynpnr = sy-dynnr dynprofield = l_dynfield value_org = 'S' TABLES value_tab = pt_value EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
GRPCRTA_PC_GET_GRC_DATA CALL FUNCTION 'GRPCRTA_PC_GET_GRC_DATA' EXPORTING i_rfcdest = p_rfcdest i_flag = p_flag i_timeframe = p_tframe i_timeframe_y = p_year i_search_pattern = p_spat I_SRFCDEST = p_srfcdest i_regulationid = p_regid IMPORTING i_timeframe_info = p_time_info e_systeminfo = g_systeminfo TABLES t_control_sres = p_control_list t_control_rule = p_rule_list t_org_ran = p_org t_pro_ran = p_pro t_subpro_ran = p_subpro.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = p_structure CHANGING ct_fieldcat = pt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
POPUP_TO_INFORM CALL FUNCTION 'POPUP_TO_INFORM' EXPORTING titel = g_repid txt1 = l_msg txt2 = p_subrc.
AIPC_CONVERT_TO_UPPERCASE CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE' EXPORTING i_input = l_progname i_langu = sy-langu IMPORTING e_output = l_progname.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Set target system'(l08) text_question = c_question text_button_1 = 'Yes'(l14) icon_button_1 = 'ICON_EXECUTE_OBJECT' text_button_2 = 'No'(l15) icon_button_2 = 'ICON_CANCEL' default_button = '1' display_cancel_button = ' ' IMPORTING answer = c_answer.
AIPC_CONVERT_TO_UPPERCASE CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE' EXPORTING i_input = g_rfcdest i_langu = sy-langu IMPORTING e_output = g_rfcdest.
GRPCRTA_PC_GET_GRC_DATA CALL FUNCTION 'GRPCRTA_PC_GET_GRC_DATA' EXPORTING i_rfcdest = p_rfcdest i_flag = p_flag TABLES i_connector_list = t_connector_list.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = p_pct text = p_msg.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Exit'(l13) text_question = 'Selection will be lost Exit anyway?'(l12) text_button_1 = 'Yes'(l14) * icon_button_1 = 'ICON_EXECUTE_OBJECT' icon_button_1 = 'ICON_PDIR_BACK' text_button_2 = 'No'(l15) default_button = '1' display_cancel_button = 'X' IMPORTING answer = c_answer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.