RN2UNLOM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for ISH-Release 4...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RN2UNLOM 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.
Selection Text: NOUPD = Test Mode
Selection Text: FALNR = Case Number
Selection Text: EINRIS = Institution
Title: Enhancement Migration Table NLOP into NLICZ
Text Symbol: 032 = Migration NLOP -> NLICZ
Text Symbol: 031 = MedMigID
Text Symbol: 030 = MigID
Text Symbol: 029 = Anchor/Req.-Service
Text Symbol: 028 = No. data records in NLOP:
Text Symbol: 027 = Test mode, no database changes made
Text Symbol: 026 = NICP Data
Text Symbol: 025 = Service Short Text
Text Symbol: 024 = Proc.Code
Text Symbol: 023 = NLICZ Data
Text Symbol: 022 = Asgmt Type
Text Symbol: 021 = SqNo. Svce. 2
Text Symbol: 020 = SqNo. Svce. 1
Text Symbol: 01B = NLOP contains unconverted data
Text Symbol: 01A = Cannot activate new OP transaction,
Text Symbol: 019 = NLLZ Data
Text Symbol: 018 = Diagn. No.
Text Symbol: 017 = Proced.
Text Symbol: 016 = Catalog
Text Symbol: 015 = SqNo. Svce.
Text Symbol: 014 = Case No.
Text Symbol: 013 = Inst.
Text Symbol: 012 = NLOP Data
Text Symbol: 011 = Table could not be updated - Roll back triggered
Text Symbol: 010 = Program terminated. No DB update.
Text Symbol: 009 = Cont.
Text Symbol: 008 = Stop
Text Symbol: 007 = "Enhancement Migration NLOP -> NLICZ
Text Symbol: 006 = Read the documentation first!
Text Symbol: 005 = new structure NLICZ.
Text Symbol: 004 = Caution: This program fills the new
Text Symbol: 003 = >>> Run program in background <<<
Text Symbol: 002 = >>> Do not run this program again <<<
Text Symbol: 001 = Processing Mode
INCLUDE RNDATA00.
INCLUDE MNCOLOUR.
INCLUDE RNSSSPBO.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_AUTH_CHECK_REPORT_EINRI CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_EINRI' EXPORTING REPID = REPID EINRI = '*' * NO_MESSAGE = ' ' MESSAGETYPE = 'E' * AUTO_LEAVE = ' ' EXCEPTIONS OTHERS = 1.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING TEXT_OPTION1 = 'Stop'(008) TEXT_OPTION2 = 'Weiter'(009) TEXTLINE1 = PTEXT1 TEXTLINE2 = PTEXT2 TEXTLINE3 = PTEXT3 TITEL = PTITEL IMPORTING ANSWER = REPLY.
DB_COMMIT CALL FUNCTION 'DB_COMMIT' " all in the database EXCEPTIONS OTHERS = 1.
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING EINRI = RNSTAT-EINRI LINE_SIZE = RNSTAT-LINE_SIZE REPID = RNSTAT-REPID TITLE_LIN1 = RNSTAT-TITLE_LIN1 TITLE_LIN2 = RNSTAT-TITLE_LIN2 ULINE = RNSTAT-ULINE AUSBEGDT = RNSTAT-AUSBEGDT AUSENDDT = RNSTAT-AUSENDDT EXCEPTIONS INVALID_EINRI = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.