RNAFMON1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The case monitor lets you access a concise overview of the following billing-relevant case information: Insurance relationship Insurance verification Certificates Services Diagnoses All movements Insurance providers Surgeries You can decide on one of two output types to display case information:
If you would like to execute this report or see the full code listing simply enter RNAFMON1 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
NA45 - IS-H: Case monitor billing
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: A_BIS = Admission Date To
Selection Text: A_VON = Admission Date From
Selection Text: EINRI = Institution
Selection Text: E_BIS = Discharge Date To
Selection Text: E_VON = Discharge Date From
Selection Text: R_FALNR = Case
Selection Text: SELKZ = Case Selection
Title: IS-H: Case Monitor
Text Symbol: 001 = Case Monitor
Text Symbol: F01 = Enter selection criteria
Text Symbol: F02 = Select either admissions OR discharges.
Text Symbol: F03 = Select either via billing selection OR movements.
Text Symbol: S01 = Case Monitor Selection
Text Symbol: S02 = Admission Period
Text Symbol: S03 = To
Text Symbol: S04 = Discharge Period
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_AUTH_CHECK_REPORT_EINRI CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_EINRI' EXPORTING REPID = 'RNAFMON1' EINRI = EINRI MESSAGETYPE = 'S' AUTO_LEAVE = ON IMPORTING RC = RC EXCEPTIONS OTHERS = 1.
ISH_CASE_INFO CALL FUNCTION 'ISH_CASE_INFO' EXPORTING I_EINRICHT = EINRI READ_NBEW = 'X' READ_NDIA = 'X' READ_NKSK = 'X' READ_NLEI = 'X' READ_NCIR = 'X' IMPORTING NO_AUTHORITY = NO_AUTH TABLES I_NBEW = INBEW I_NDIA = INDIA I_NFAL = INFAL I_NKSK = INKSK I_NLEI = INLEI I_NCIR = INCIR.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.