RNABDT_FORMS 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 RNABDT_FORMS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_SAP_OM_CHECK_ACTIVE CALL FUNCTION 'ISH_SAP_OM_CHECK_ACTIVE' EXCEPTIONS not_active = 1.
ISH_OM_OU_GET CALL FUNCTION 'ISH_OM_OU_GET' EXPORTING itr_orgid = ltr_orgid IMPORTING et_norg = lt_norg EXCEPTIONS nothing_found = 0 internal_error = 0 OTHERS = 0.
ISH_KV_ERMNR_GET CALL FUNCTION 'ISH_KV_ERMNR_GET' EXPORTING i_einri = se_einri i_orgid = oetab-orgid IMPORTING e_kv_ermnr = arztn e_tn23v = tn23v EXCEPTIONS no_tn23v_found = 1 no_kv_ermnr_found = 2 tn23v_incomplete = 3 OTHERS = 4.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal =
-ibgdt IMPORTING date_external = l_begdt EXCEPTIONS OTHERS = 0.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal =
-ibgdt IMPORTING date_external = l_begdt EXCEPTIONS OTHERS = 0.
ISH_CASEDIAGNOSIS_GETLIST CALL FUNCTION 'ISH_CASEDIAGNOSIS_GETLIST' EXPORTING ss_einri = p_einri ss_falnr = pt_nksk-falnr ss_authority_check = off " important switch off TABLES ss_ndia = t_ndia.
ISH_INSREL_CASES_GETLIST CALL FUNCTION 'ISH_INSREL_CASES_GETLIST' EXPORTING i_einri = p_einri i_sel_storn = off i_no_kostr = off i_only_kostr = on TABLES it_falnr = t_falnr ot_result = pt_ncir EXCEPTIONS OTHERS = 0.
ISH_SERVICES_COP CALL FUNCTION 'ISH_SERVICES_COP' EXPORTING i_einri = p_einri i_falnr = p_nfal-falnr i_nfal = p_nfal i_npat = p_npat i_begdt = l_visitdate "note 1787198 * I_WITH_COMMIT = ' ' * IMPORTING * E_WORST_RETURNED_MSGTY = TABLES nbewtab = t_case_nbew nksktab = pt_case_nksk bdtnleitab = pt_case_nlei nlkztab = t_case_nlkz tn22dtab = t_tn22d "note 1787198 cancel_copayment = t_dunned return = t_return.
MESSAGES_ACTIVE CALL FUNCTION 'MESSAGES_ACTIVE' EXCEPTIONS not_active = 01.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb =
-id * EXCEPTION_IF_NOT_ACTIVE = 'X' msgty = -type msgv1 = -message_v1 msgv2 = -message_v2 msgv3 = -message_v3 msgv4 = -message_v3 txtnr = -number * zeile = -message * IMPORTING * ACT_SEVERITY = * MAX_SEVERITY = EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.