RNABD000 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report
If you would like to execute this report or see the full code listing simply enter RNABD000 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
NA01 - IS-H: Create Billing Statistics
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: EABKZ = Final Billing (X)
Selection Text: ERBOE = Performing OU
Selection Text: FDRUCK = Print with Form
Selection Text: KOSTR = Insurance Provider
Selection Text: KTART = Insurance Provider Type
Selection Text: LEIST = Service (In-House Catalog)
Selection Text: MSG_SAV = Save Messages
Selection Text: NO_LIST = Suppress Invoice List
Selection Text: RFC_C = If R2/RF: Update Immediately
Selection Text: SEKZ = Self-Payer Invoices
Selection Text: SELKZ = Or Case Selection
Selection Text: TABKZ = Test Run (no Changes Made)
Selection Text: TDDEST = Printer
Selection Text: ABDAT = D .
Selection Text: BESDT = D .
Selection Text: BILLP = D .
Selection Text: BLDAT = D .
Selection Text: BPVKZ = D .
Selection Text: BSPER = D .
Selection Text: EINRI = D .
Selection Text: FALNR = D .
Selection Text: IGMAZ = D .
Selection Text: KZFAKDAT = D .
Selection Text: KZZWA = D .
Selection Text: TSTDR = D .
Selection Text: VABKZ = D .
Selection Text: DRUCK = Print w/o Form (List Output)
Selection Text: DATZW = Interim Billing To...
Selection Text: CUST = Third-Party Payer
Selection Text: ANFOE = Departmental Requesting OU
Selection Text: ABRGP = Only for Billing Physician
Title: IS-H: Patient Billing
Text Symbol: 001 = Case
Text Symbol: 002 = Final Billing
Text Symbol: 003 = Interim Billing
Text Symbol: 004 = Interim Billing Date
Text Symbol: 005 = Billing Date
Text Symbol: 006 = Test Billing
INCLUDE RNAB0000_SEL_SCREEN_B_EINRI. "EINRICHTUNG
INCLUDE RNAB0000_SEL_SCREEN_SELECTION. "AUSWAHL
INCLUDE RNAB0000_SEL_SCREEN_BILL_PAR. "SELECTIONSBILD
INCLUDE RNAB0000_SEL_SCREEN_B_RESTRICT. "RECHNUNGSEINSCHRÄNKUNG
INCLUDE RNAB0000_SEL_SCREEN_NL. "NL EINSCHRÄNKUNG
INCLUDE RNAB0000_SEL_SCREEN_PRELIMINAR. "SG VORLÄUFIGE RECHNUNG
INCLUDE RNAB0000_INITIALIZATION.
INCLUDE RNAB0000_INITIALIZATION_TEXT.
INCLUDE RNAB0000_INPUT_OFF.
INCLUDE RNAB0000_TEXT_OFF_NL.
INCLUDE RNAB0000_TEXT_OFF_PRELIMINAR.
INCLUDE RNAB0000_TEXT_OFF_BESDT. "ACTIV IN DE
INCLUDE RNAB0000_TEXT_OFF_TC. " TC BILLING
INCLUDE RNAB0000_USER_COMMAND.
INCLUDE RNAB0000_AT_SELECTION_SCREEN.
INCLUDE RNAB0000_AT_SELECTION_SCREEN_O.
INCLUDE RNAB0000_AT_SEL_SCREEN_BR.
INCLUDE RNAB0000_AT_SEL_ON_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_SHOW_GPART CALL FUNCTION 'ISH_SHOW_GPART' EXPORTING aufruf = 'Y' rolle = '2' vcode = 'UPD' IMPORTING ngpa_gpart = kostr-low EXCEPTIONS OTHERS = 5.
ISH_SHOW_GPART CALL FUNCTION 'ISH_SHOW_GPART' EXPORTING aufruf = 'Y' rolle = '2' vcode = 'UPD' IMPORTING ngpa_gpart = kostr-high EXCEPTIONS OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.