RN1ME_SHOWPR_BDCC is a standard Executable ABAP Report 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 RN1ME_SHOWPR_BDCC 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: ALVDVAR = D Layout
Selection Text: P_CONTR = D Controlled
Selection Text: P_MONO = D Single Agent Drug
Selection Text: P_NARCOT = D Narcotic
Selection Text: P_PSYCHO = D Psychotropic
Selection Text: SE_APDID = D Admin. Device ID
Selection Text: SE_APRID = D Administration Route ID
Selection Text: SE_BRANA = D Brand Name
Selection Text: SE_CATID = D Formulary ID
Selection Text: SE_EXPAN = Expand
Selection Text: SE_GENNA = D Genericon
Selection Text: SE_MANUF = D Manufacturer
Selection Text: SE_PHFID = D Dosage Form ID
Title: Medication: Display/Print Drug Basic Catalog
Text Symbol: 040 = Layout
Text Symbol: 042 = Expand
Text Symbol: 044 = Number of Entries
Text Symbol: 045 = List Display
Text Symbol: S01 = Drug Data
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISHMED_ME_SEARCH_DRUGS_BDC CALL FUNCTION 'ISHMED_ME_SEARCH_DRUGS_BDC' EXPORTING i_dialog = 'X' IMPORTING e_rc = obj_erc TABLES s_bdccat = se_catid s_brandn = se_brana s_genname = se_genna * S_AGENT = s_manuf = se_manuf s_phformid = se_phfid r_n1bdcc = it_bdcc_sel r_n1formulary = it_form_sel CHANGING cr_errorhandler = obj_errorhandler c_sel_fields = gs_sel_fields.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * I_PROGRAM_NAME = i_internal_tabname = 'IT_BDCC_H' i_structure_name = 'RN1ME_ALV_SHOW_BDCC_HEADER' * I_CLIENT_NEVER_DISPLAY = 'X' * I_INCLNAME = i_bypassing_buffer = off i_buffer_active = on CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * I_PROGRAM_NAME = i_internal_tabname = 'IT_BDCC' i_structure_name = 'RN1ME_BDCC_LIST' * I_CLIENT_NEVER_DISPLAY = 'X' * I_INCLNAME = i_bypassing_buffer = off i_buffer_active = on CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING * einri = rnstat-einri * ausbegdt = rnstat-ausbegdt * ausenddt = rnstat-ausenddt line_size = rnstat-line_size repid = rnstat-repid title_lin1 = rnstat-title_lin1 title_lin2 = rnstat-title_lin2 uline = on .
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = repid is_layout = gs_layout it_fieldcat = xfield i_tabname_header = 'IT_BDCC_H' i_tabname_item = 'IT_BDCC' * i_structure_name_header = 'RN1ME_ALV_SHOW_BDCC_HEADER' * i_structure_name_item = 'RN1ME_BDCC_LIST' is_keyinfo = gs_keyinfo i_save = 'A' is_variant = gs_variant is_print = gs_print it_sort = gs_sortinfo it_events = gt_events[] * IS_PRINT = * IS_REPREP_ID = * I_BYPASSING_BUFFER = 'X' * I_BUFFER_ACTIVE = ' ' * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab_header = it_bdcc_h t_outtab_item = it_bdcc EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = vs_hlpvar i_save = 'A' IMPORTING e_exit = vc_exit es_variant = vs_variant EXCEPTIONS not_found = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.