RN1LLAUF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report displays the tasks which are assigned to the services of a service catalog...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 RN1LLAUF into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
N1L3 - IS-H*MED: List task by service
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: TXTKAT = ?...(TXTKAT)
Selection Text: TXTEINRI = ?...(TXTEINRI)
Selection Text: KATIDE = ?...(KATIDE)
Selection Text: GÜLTV = ?...(GÜLTV)
Selection Text: GÜLTB = ?...(GÜLTB)
Selection Text: EINRE = ?...(EINRE)
Selection Text: LSTIDE = Service
Title: Service-Task Assignment
Text Symbol: U12 = No Task Text Created
Text Symbol: U11 = Total of Services Displayed ;;
Text Symbol: U10 = Hospital ;;
Text Symbol: U07 = DInd;; Delete indicator
Text Symbol: U06 = Validity ;;
Text Symbol: U05 = Task ;;
Text Symbol: U04 = No. ;; Number
Text Symbol: U03 = Service ;;
Text Symbol: U02 = Service Catalog ;;
Text Symbol: U01 = Total of All Assigned Tasks ;;
Text Symbol: E06 = To
Text Symbol: E05 = Service ;;
Text Symbol: E04 = Service Validity ;;
Text Symbol: E02 = Service Catalog ;;
Text Symbol: E01 = Institution
Text Symbol: E00 = Program Selection
INCLUDE MNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISHMED_CHECK_N_EINR_REP CALL FUNCTION 'ISHMED_CHECK_N_EINR_REP' EXPORTING repid = repid einri = einre no_message = ' ' messagetype = 'S' auto_leave = 'X' IMPORTING rc = return_code 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 uline = off ausbegdt = gueltv ausenddt = gueltb EXCEPTIONS invalid_einri = 01.
R3MED_READ_N1AUFGA CALL FUNCTION 'R3MED_READ_N1AUFGA' EXPORTING vorgang = n1aufga-vorgang IMPORTING e_n1aufga = n1aufga EXCEPTIONS not_found = 1.
R3MED_READ_N1AUFGT CALL FUNCTION 'R3MED_READ_N1AUFGT' EXPORTING vorgang = n1aufgt-vorgang IMPORTING e_n1aufgt = n1aufgt EXCEPTIONS not_found = 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.