RN2N0M_PROBSC 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 RN2N0M_PROBSC 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_READ_NGPA CALL FUNCTION 'ISH_READ_NGPA' EXPORTING GPART = in_ndoc-mitarb * SS_WITH_NADR = 'X' * SS_BUFFER = 'X' IMPORTING NGPA_E = l_wa_ngpa * NADR_E = * TABLES * NADR_TELNR = EXCEPTIONS NOT_FOUND = 1 NO_AUTHORITY = 2 OTHERS = 3 .
ISHMED_SHOW_NGPA CALL FUNCTION 'ISHMED_SHOW_NGPA' EXPORTING * SS_CHECK = 'O' ss_einri = in_ndoc-einri ss_gdatum = sy-datum ss_orgid = in_ndoc-orgdo ss_vcode = 'UPD' ss_activex = 'X' * SS_VORGANG = ' ' * SS_CHK_AUTH = 'X' * SS_INVOLV_MA = OFF * SS_GPART = ' ' IMPORTING e_ngpa = l_wa_ngpa EXCEPTIONS not_found = 1 OTHERS = 2.
ISH_N2_DYNP_VALUES_UPDATE CALL FUNCTION 'ISH_N2_DYNP_VALUES_UPDATE' EXPORTING dyname = g_repid dynumb = sy-dynnr TABLES dynpfields = g_dynpfields EXCEPTIONS OTHERS = 1.
ISH_SHOW_GPART CALL FUNCTION 'ISH_SHOW_GPART' EXPORTING arzt = 'X' aufruf = 'Y' rolle = '1' vcode = 'UPD' IMPORTING ngpa_gpart = l_wa_ngpa-gpart select_ngpa = l_flag e_ngpa = l_wa_ngpa e_nadr = l_wa_nadr EXCEPTIONS einri_false = 1 gschl_false = 2 ktart_false = 3 not_found = 4 OTHERS = 5.
ISH_N2_DYNP_VALUES_UPDATE CALL FUNCTION 'ISH_N2_DYNP_VALUES_UPDATE' EXPORTING dyname = g_repid dynumb = sy-dynnr TABLES dynpfields = g_dynpfields EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.