RPCMODI2 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 RPCMODI2 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!
CD_READ_RGDIR call function 'CD_READ_RGDIR' "CdV attività post review exporting persnr = cid tables in_rgdir = rgdir exceptions no_record_found = 1.
POPUP_CONTINUE_YES_NO CALL FUNCTION 'POPUP_CONTINUE_YES_NO' EXPORTING DEFAULTOPTION = 'Y' TEXTLINE1 = TEXT-010 TEXTLINE2 = TEXT-011 TITEL = TEXT-015 START_COLUMN = 25 START_ROW = 6 IMPORTING ANSWER = RISP.
POPUP_TO_DISPLAY_TEXT CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT' EXPORTING TITEL = TEXT-016 TEXTLINE1 = TEXT-017 TEXTLINE2 = TEXT-018 START_COLUMN = 25 START_ROW = 6.
HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' "vit-19980511 EXPORTING COMPANYCODE = T5ITNB-MODMN LANGUAGE = SY-LANGU IMPORTING COMP_NAME = HRCA_COMPANY-COMP_NAME VAT_REG_NO = HRCA_COMPANY-VAT_REG_NO EXCEPTIONS NOT_FOUND = 1 OTHERS = 2. "vit-19980511
HELP_VALUES_GET_WITH_TABLE call function 'HELP_VALUES_GET_WITH_TABLE' exporting fieldname = 'MODMN' tabname = 'T5IT1P' titel = 'Codice Raggruppamento' "#EC NOTEXT importing select_value = societa tables fields = tab_fields valuetab = tab_values exceptions field_not_in_ddic = 1 more_then_one_selectfield = 2 no_selectfield = 3 others = 4.
RP_GET_CURRENCY CALL FUNCTION 'RP_GET_CURRENCY' EXPORTING MOLGA = P_CALCMOLGA BEGDA = P_FBEG IMPORTING WAERS = P_CALC_CURRENCY EXCEPTIONS MOLGA_NOT_IN_T001P = 1 NO_ENTRY_FOUND_IN_TABLE_T001 = 2 NO_ENTRY_FOUND_IN_TABLE_T500P = 3 NO_ENTRY_FOUND_IN_TABLE_T500C = 4 OTHERS = 5.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING DATE = FBEG FOREIGN_AMOUNT = VALORE FOREIGN_CURRENCY = FOREIGN_CURRENCY LOCAL_CURRENCY = LOCAL_CURRENCY IMPORTING LOCAL_AMOUNT = P_AMOUNT EXCEPTIONS NO_RATE_FOUND = 01 OVERFLOW = 02.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = PROGRESS_TEXT EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.