RCIFCUST 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 RCIFCUST 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: Program for Setting Up Installation-Specific CIF Parts
Text Symbol: 211 = Calling Program
Text Symbol: 210 = No generation for
Text Symbol: 209 = Writing application log subobject for
Text Symbol: 208 = writing
Text Symbol: 207 = reading
Text Symbol: 206 = Function module not found:
Text Symbol: 205 = Generating
Text Symbol: 204 = Writing selection screen texts for
Text Symbol: 203 = Inserting code into
Text Symbol: 202 = Error
Text Symbol: 201 = Writing
Text Symbol: 200 = Generating code for
INCLUDE CIFCONST.
INSERT REPORT INCLUDE_PARAM_INIT_NAME
INSERT REPORT INCLUDE_CHECKBOX_NAME FROM LT_CODE_CHECKBOX.
INSERT REPORT INCLUDE_PARAM_MAT_NAME FROM LT_CODE_PARAM_MAT.
INSERT REPORT INCLUDE_PARAM_NOMAT_NAME FROM LT_CODE_PARAM_NOMAT.
INSERT REPORT INCLUDE_KEYSEL_NAME FROM LT_CODE_KEYSEL.
No SAP DATABASE tables are accessed within this REPORT code!
RS_GET_MAINPROGRAMS CALL FUNCTION 'RS_GET_MAINPROGRAMS' EXPORTING * DIALOG = ' ' * FULLTAB = ' ' name = 'RIMODSEL' * MULTIPLE_SELECT = ' ' * DIALOG_REQUIRED = ' ' * TRDIR_INF = ' ' * IMPORTING * NUMBER_OF_MAINPROGRAMS = * TINDEX = TABLES mainprograms = lt_repnames EXCEPTIONS cancelled = 1 OTHERS = 2.
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING funcname = l_funcname IMPORTING group = l_curr_groupname EXCEPTIONS function_not_exist = 1 OTHERS = 2.
RS_FUNCTION_COPY CALL FUNCTION 'RS_FUNCTION_COPY' EXPORTING dark_flag = 'X' new_group = l_groupname new_name = l_funcname old_name = mapfunction_template_con EXCEPTIONS error_message = 1 cancelled = 2 OTHERS = 3.
RSS_TEMPLATE_INSTANTIATE CALL FUNCTION 'RSS_TEMPLATE_INSTANTIATE' EXPORTING i_template = template_con i_program_name = l_program_name i_program_type = 'I' i_meta_object = lt_cifobjinfo * I_UNI_IDC25 = * I_CLIENT = SY-MANDT * I_GLOBAL_CHECK = * I_GLOBAL_PROGRAM = i_force_compilation = 'X' i_no_program_check = 'X' * I_DEBUG_LEVEL = IMPORTING e_error_line = l_errorline e_error_message = l_error_message o_error_line = l_errorline o_error_message = l_error_message e_t_code = l_t_code TABLES e_t_program_source = lt_abapsource EXCEPTIONS template_not_found = 1 template_syntax_error = 2 program_syntax_error = 3 internal_error = 4 invalid_input = 5 generation_error = 6 OTHERS = 7.
RS_FUNCTION_ACTIVE_CHECK CALL FUNCTION 'RS_FUNCTION_ACTIVE_CHECK' EXPORTING funcname = l_funcname IMPORTING active = l_active EXCEPTIONS not_found = 1 OTHERS = 2.
RS_FUNCTION_ACTIVATE CALL FUNCTION 'RS_FUNCTION_ACTIVATE' EXPORTING action = 'X' * CORR_INSERT = ' ' funcname = l_funcname * WITH_POPUP = ' ' EXCEPTIONS cancelled = 1 canceled_in_corr = 2 editor_navigation_flag = 3 error_message = 4 message_send = 5 not_found = 6 no_action = 7 permission_failure = 8 OTHERS = 9.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = ls_ko200 IMPORTING we_order = ls_order es_tadir = ls_tadir TABLES wt_e071k = lt_e071k EXCEPTIONS OTHERS = 1.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_ko200 = ls_ko200 IMPORTING we_order = ls_order we_ko200 = ls_ko200 es_tadir = ls_tadir TABLES wt_e071k = lt_e071k EXCEPTIONS OTHERS = 1.
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING funcname = p_funcname IMPORTING * GROUP = include = l_inclname EXCEPTIONS function_not_exist = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = lv_text.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' object_name = h_sourcename object_type = h_sourcetype.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = ls_ko200 IMPORTING we_order = l_order TABLES wt_e071k = lt_e071k EXCEPTIONS error_message = 01.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_ko200 = ls_ko200 IMPORTING we_order = l_order TABLES wt_e071k = lt_e071k EXCEPTIONS OTHERS = 1.
POPUP_TO_INFORM CALL FUNCTION 'POPUP_TO_INFORM' EXPORTING titel = lv_titel txt1 = lv_line1 txt2 = lv_line2 txt3 = lv_line3.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING defaultoption = '1' textline1 = lv_line1 textline2 = lv_line2 textline3 = lv_line3 text_option1 = 'Nein'(331) text_option2 = 'Ja'(330) titel = lv_titel cancel_display = space IMPORTING answer = lv_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.
RCIFCUST - Program for Setting Up Installation-Specific CIF Parts RCIFCUST - Program for Setting Up Installation-Specific CIF Parts RCIFAPS2 - Application-Specific Settings in CIF (Target-System-Independent) RCIFAPS2 - Application-Specific Settings in CIF (Target-System-Independent) RCIC_EVENT_SUBSLIST - CIC Component Subscribe List RCIC_EVENT_SUBSLIST - CIC Component Subscribe List