RINETF10 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 RINETF10 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: Object Network: Subroutines for List Editing
INCLUDE MIOLXF14.
INCLUDE MIOLXF16.
INCLUDE MIOLXF50.
INCLUDE EAML_LIST_EDIT_REPORTS.
INCLUDE EAML_LIST_EDIT_OBJ_LINK.
No SAP DATABASE tables are accessed within this REPORT code!
INST_AUTHORITY_CHECK_ALL CALL FUNCTION 'INST_AUTHORITY_CHECK_ALL' EXPORTING BEGRP = OBJECT_TAB-BEGRU TCODE = Y_FCODE_IN03 EXCEPTIONS KEINE_BERECHTIGUNG_BEGRP = 01 KEINE_BERECHTIGUNG_IWERK = 02 KEINE_BERECHTIGUNG_SWERK = 03.
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING OBJNR = OBJECT_TAB-STATUS SPRAS = SY-LANGU IMPORTING LINE = OBJECT_TAB-STATXT.
EAML_NWM_EXEC CALL FUNCTION 'EAML_NWM_EXEC' EXPORTING IV_NETID = rihinet-netid IV_NET_TO_TYPE = lv_net_to_type IV_KANTE = rihinet-kante IV_TCODE = 'IN22'.
EAML_NWM_EXEC CALL FUNCTION 'EAML_NWM_EXEC' EXPORTING IV_NETID = rihinet-netid IV_NET_TO_TYPE = lv_net_to_type IV_KANTE = rihinet-kante * IV_TCODE = 'IN23' .
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING DEFAULTOPTION = '1' TEXTLINE1 = 'Wollen Sie die Verarbeitung für'(701) TEXTLINE2 = 'alle noch nicht bearbeiteten'(702) TEXTLINE3 = 'selektierten Objekte abbrechen?'(703) TEXT_OPTION1 = 'Nein'(705) TEXT_OPTION2 = 'Ja'(706) TITEL = 'Abbrechen in Listverarbeitung '(704) IMPORTING ANSWER = ANSWER.
CLSC_SELECT_OBJECTS_FROM_CLASS CALL FUNCTION 'CLSC_SELECT_OBJECTS_FROM_CLASS' EXPORTING KLART = TCLA-KLART TABLE = 'INET' TABLES OBJECTS = L_CLOBJ EXCEPTIONS PF03 = 01 PF12 = 02 PF15 = 03.
STATUS_BUFFER_REFRESH CALL FUNCTION 'STATUS_BUFFER_REFRESH'.
STATUS_PRE_READ CALL FUNCTION 'STATUS_PRE_READ' TABLES JSTO_PRE_TAB = L_JSTO_PRE_TAB.
STATUS_PRE_READ CALL FUNCTION 'STATUS_PRE_READ' TABLES JSTO_PRE_TAB = L_JSTO_PRE_TAB.
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING OBJNR = OBJECT_TAB-STATUS SPRAS = SY-LANGU IMPORTING LINE = OBJECT_TAB-STATXT.
STATUS_READ CALL FUNCTION 'STATUS_READ' EXPORTING OBJNR = OBJECT_TAB-STATUS ONLY_ACTIVE = ONLY_ACTIVE_ON TABLES STATUS = H_STATUS_TAB.
STATUS_NUMBER_CONVERSION CALL FUNCTION 'STATUS_NUMBER_CONVERSION' EXPORTING LANGUAGE = SY-LANGU OBJNR = OBJECT_TAB-STATUS STATUS_NUMBER = H_STATUS_TAB-STAT IMPORTING TXT04 = H_STATUS_TEXT_TAB-TXT04.
PM_GET_VARIANT * CALL FUNCTION 'PM_GET_VARIANT' "N215704 * EXPORTING "N215704 * REPID = 'RIMHIS00' "N215704 * TCODE = 'IP19' "N215704 * IMPORTING "N215704 * VARIANT = VARIANT "N215704 * EXCEPTIONS "N215704 * NOT_FOUND = 1 "N215704 * OTHERS = 2. "N215704
FUNC_LOCATION_ARRAY * CALL FUNCTION 'FUNC_LOCATION_ARRAY' * EXPORTING * SELFIELD = 'TPLNR' * TABSTRUCTURE = 'IFLOT' * TABLES * IFLO_SEL = EQUNR_TAB * IFLO_TAB = equz_TAB
* .. SMRANGE aufbauen
FUNC_LOCATION_ARRAY CALL FUNCTION 'FUNC_LOCATION_ARRAY' EXPORTING SELFIELD = 'TPLNR' TABSTRUCTURE = 'IFLOT' TABLES IFLO_SEL = TPLNR_TAB IFLO_TAB = IFLOT_TAB.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.