RNABDT_PX_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_PX_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_FILL_CONDITIONS_FOR_FORMS CALL FUNCTION 'ISH_FILL_CONDITIONS_FOR_FORMS' EXPORTING vv_einri = se_einri vv_falnr =
-falnr TABLES vv_cond = t_condition.
ISH_FIND_FORMS CALL FUNCTION 'ISH_FIND_FORMS' EXPORTING einri = p_einri patcaseid =
-falnr orgid = ' ' printer = p_printer st_print = on IMPORTING abnormal_end = cancel TABLES conditions = t_condition events = t_event forms = t_rnfor EXCEPTIONS no_authority = 01 no_event = 02 no_form = 03 no_printer = 04 no_standard = 05 no_terminal = 06.
ISH_FORM_PROTOCOL_SAVE CALL FUNCTION 'ISH_FORM_PROTOCOL_SAVE' EXPORTING einri =
-einri patnr = -patnr falnr = -falnr lfdbew = -lfdbew TABLES forms = t_rnfor.
ISH_DISTRIBUTE_CANCEL_RECEIPT CALL FUNCTION 'ISH_DISTRIBUTE_CANCEL_RECEIPT' EXPORTING belegnummer =
-belnr buchungskreis = -bukrs einrichtung = p_einri event = 'BEL000' gjahr = -gjahr stgrd = -stgrd * BUDAT = -budat "note 921708 * MONAT = IMPORTING beleg = fb_beleg msgid = fb_msgid msgno = fb_msgno msgty = fb_msgty msgv1 = fb_msgv1 msgv2 = fb_msgv2 msgv3 = fb_msgv3 msgv4 = fb_msgv4 subrc = fb_subrc EXCEPTIONS missing_data = 1 no_configuration_found = 2 not_possible = 3 OTHERS = 4. "#EC *
ISH_COP_SAVE_NZZGR CALL FUNCTION 'ISH_COP_SAVE_NZZGR' EXPORTING ss_rncop = s_rncop ss_db_rncop = s_db_rncop ss_vcode = vcode.
ISH_EXPORT_INSURANCE_DATA CALL FUNCTION 'ISH_EXPORT_INSURANCE_DATA' EXPORTING i_einri = nfal-einri i_falnr = nfal-falnr i_with_ngpa_nktr = on EXCEPTIONS missing_patnr = 0 OTHERS = 0.
ISH_MESSAGE_TEXT_BUILD CALL FUNCTION 'ISH_MESSAGE_TEXT_BUILD' EXPORTING msgid = p_msgid msgnr = p_msgno msgv1 = p_msgv1 msgv2 = p_msgv2 msgv3 = p_msgv3 msgv4 = p_msgv4 IMPORTING message_text_output = l_text EXCEPTIONS OTHERS = 1.
MESSAGE_TEXTS_READ CALL FUNCTION 'MESSAGE_TEXTS_READ' EXPORTING msg_log_imp = ls_msg_log IMPORTING msg_text_exp = ls_msg_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.