RPCDIFM7 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 RPCDIFM7 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_DK_AUTHORITY_CHECK CALL FUNCTION 'HR_DK_AUTHORITY_CHECK' EXPORTING operation = 'UPDATE' EXCEPTIONS user_no_authroity = 1 too_many_parameters = 2 no_authority_action = 3 user_no_profile = 4 fieldname_not_identified = 5 authoritydestroyed = 6 OTHERS = 7.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = getfields EXCEPTIONS invalid_abapworkarea = 1 invalid_dynprofield = 2 invalid_dynproname = 3 invalid_dynpronummer = 4 invalid_request = 5 no_fielddescription = 6 invalid_parameter = 7 undefind_error = 8 OTHERS = 9.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING fieldname = fnam tabname = tnam titel = popup_title IMPORTING select_value = sel_runnr TABLES fields = ihelp_fields valuetab = helptab EXCEPTIONS field_not_in_ddic = 1 more_then_one_selectfield = 2 no_selectfield = 3 OTHERS = 4.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING fieldname = fnam tabname = tnam titel = text-a02 IMPORTING select_value = sel_senum TABLES fields = ihelp_fields valuetab = helptab EXCEPTIONS field_not_in_ddic = 1 more_then_one_selectfield = 2 no_selectfield = 3 OTHERS = 4.
HR_DK_ALV_DISP_LIST_PERSON CALL FUNCTION 'HR_DK_ALV_DISP_LIST_PERSON' EXPORTING struct_name = 'HRDK_RPCDIFM4' current_report = sy-cprog * LIST_TITLE = * LIST_TITLE2 = * GUI_STATUS = ' ' variant = pa_varia * HR_DISPLAY_ERROR_LIST = ' ' * HR_DISPLAY_STAT_LIST = ' ' * CALLBACK_END_OF_LIST = ' ' * CALLBACK_BUTTON1 = ' ' * TEXT_BUTTON1 = ' ' * CALLBACK_BUTTON2 = ' ' * TEXT_BUTTON2 = ' ' * CALLBACK_USER_COMMAND = ' ' TABLES tab = output_table EXCEPTIONS read_infotype_failed = 1 hr_alv_list_display_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.