IN2_RAD_PROC_WL is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). It is used for Worklist for Radiological Processes The class lcl_rad_proc_wl shows the performed services of all radiological studies in the status "completed"...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter IN2_RAD_PROC_WL 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.
Title: Include IN2_RAD_PROC_WL
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_N2_DOCUMENT_SELECT CALL FUNCTION 'ISH_N2_DOCUMENT_SELECT' EXPORTING ss_dynpro = 'NO' * SS_SELECT = ' ' * SS_EXPORT = ' ' * SS_VONDAT = 00000000 * SS_BISDAT = 00000000 * SS_DRAW = ' ' * SS_TITLEBAR = ' ' TABLES ss_ndoc = g_ndoc_t T_DRAW = l_draw_t EXCEPTIONS no_document = 1 no_selection = 2 OTHERS = 3.
ISH_N2_DOCUMENT_SELECT CALL FUNCTION 'ISH_N2_DOCUMENT_SELECT' EXPORTING ss_dynpro = 'NO' * SS_SELECT = ' ' * SS_EXPORT = ' ' * SS_VONDAT = 00000000 * SS_BISDAT = 00000000 SS_DRAW = l_draw * SS_TITLEBAR = ' ' TABLES ss_ndoc = l_ndoc_t T_DRAW = l_draw_t EXCEPTIONS no_document = 1 no_selection = 2 OTHERS = 3.
ISH_N2_DOCUMENT_SET_LAYOUT CALL FUNCTION 'ISH_N2_DOCUMENT_SET_LAYOUT' TABLES ss_ndoc = g_ndoc_t ss_outtable = g_ndoc_lst_t ss_draw = l_draw_t.
ISH_N2_DOCUMENT_SELECT CALL FUNCTION 'ISH_N2_DOCUMENT_SELECT' EXPORTING ss_dynpro = 'NO' * SS_SELECT = ' ' * SS_EXPORT = ' ' * SS_VONDAT = 00000000 * SS_BISDAT = 00000000 * SS_DRAW = ' ' * SS_TITLEBAR = ' ' TABLES ss_ndoc = l_ndoc_t T_DRAW = l_draw_t EXCEPTIONS no_document = 1 no_selection = 2 OTHERS = 3.
ISH_N2_GET_DOCUMENT_DATA call function 'ISH_N2_GET_DOCUMENT_DATA' exporting s_mode = 'E' s_ndoc = p_ndoc tables s_data = l_rawdat exceptions no_authority = 1 no_export_function = 2 no_document = 3 no_doctype = 4 no_read_function = 5 others = 6.
ISH_N2_GET_DOCUMENT_DATA call function 'ISH_N2_GET_DOCUMENT_DATA' exporting s_mode = 'E' s_ndoc = l_study_ndoc tables s_data = l_rawdat exceptions no_authority = 1 no_export_function = 2 no_document = 3 no_doctype = 4 no_read_function = 5 others = 6.
ISH_N2_RAD_SHOW_PROC_WL_ENTRY CALL FUNCTION 'ISH_N2_RAD_SHOW_PROC_WL_ENTRY' EXPORTING S_PNAME = outtab_leist_wa-pname S_PATNR = outtab_leist_wa-patnr S_LNRLS = outtab_leist_wa-LNRLS S_LEIST = outtab_leist_wa-LEIST S_LEISTKTXT = outtab_leist_wa-LEISTKTXT S_ANFID = outtab_leist_wa-ANFID S_DOKAR = outtab_leist_wa-DOKAR S_DOKNR = outtab_leist_wa-DOKNR S_DOKVR = outtab_leist_wa-DOKVR S_DOKTL = outtab_leist_wa-DOKTL S_LFDDOK = outtab_leist_wa-LFDDOK S_DTKB = outtab_leist_wa-DTKB S_STUDYID = outtab_leist_wa-STUDYID S_STUDYUID = outtab_leist_wa-STUDYUID S_IEXAMID = outtab_leist_wa-IEXAMID S_ACCNR = outtab_leist_wa-ACCNR.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.