ODQ_DAEMON 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 ODQ_DAEMON 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: P_CYCLE = Takt Time in Seconds
Selection Text: P_PERIOD = Period in Minutes
Title: ODS Daemon for Real Time Processing
Text Symbol: 001 = A daemon process is already scheduled. Do you want to start the daemon anyway?
Text Symbol: JOV = Job overview
Text Symbol: QSC = Quick scheduling
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' * DIAGNOSE_OBJECT = ' ' text_question = text-001 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = abap_false * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = * IV_QUICKINFO_BUTTON_1 = ' ' * IV_QUICKINFO_BUTTON_2 = ' ' IMPORTING answer = g_answer * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2.
BP_JOB_MANAGEMENT CALL FUNCTION 'BP_JOB_MANAGEMENT' EXPORTING jobselect_dialog = tybtc_yes joblist_opcode = l_opcode jobsel_param_input = ls_job_select * LIST_TITLE = TABLES joblist = lt_selected_jobs EXCEPTIONS unknown_selection_error = 1 invalid_opcode = 2 invalid_dialog_type = 3 refresh_list_required = 4 empty_list = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.