IUUC_SCHEDULE_WATCHDOG_LOGTAB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In this activity, you schedule a batch job to detect (either once or periodically) all tables for which entries exist in the corresponding logging table...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 IUUC_SCHEDULE_WATCHDOG_LOGTAB into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IUUC_SCHED_WATCHDOG - Schedule job to find entries in log.
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_ACT_ID = D Activity ID
Selection Text: P_CRCOBJ = also create conversion objects
Selection Text: P_LSTDAY = date of last start
Selection Text: P_LSTTIM = time of last start
Selection Text: P_PACK = D Pack ID
Selection Text: P_PERHR = period. hour
Selection Text: P_PERMIN = period. min.
Selection Text: P_PHASE = D Phase
Selection Text: P_STRTDT = start data
Selection Text: P_STRTTM = start time
Title: Schedule watchdog job to find entries in IUUC logging tables
Text Symbol: 001 = Scheduled start
Text Symbol: 002 = Time
Text Symbol: 003 = Date
Text Symbol: 004 = Start periodically every
Text Symbol: 005 = Hour(s)
Text Symbol: 006 = Minutes
Text Symbol: 007 = Last Start
Text Symbol: 008 = Repository upgrade not finished yet
Text Symbol: 009 = proceed anyway
INCLUDE CNV_MBT_SM_PARAMS.
INCLUDE CNV_MBT_SM_MACROS.
No SAP DATABASE tables are accessed within this REPORT code!
IUUC_CHECK_DDIC_UPGR_FINSHED CALL FUNCTION 'IUUC_CHECK_DDIC_UPGR_FINSHED' DESTINATION g_rfcdest_rcv IMPORTING e_finished = g_upgr_finished EXCEPTIONS communication_failure = 1 system_failure = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-008 * DIAGNOSE_OBJECT = ' ' text_question = text-008 text_button_1 = text-009 * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '1' display_cancel_button = 'X' IMPORTING answer = g_popup_answer EXCEPTIONS OTHERS = 0.
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING jobname = g_jobname IMPORTING jobcount = g_jobcount EXCEPTIONS cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 OTHERS = 4.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = gt_substate EXCEPTIONS OTHERS = 0.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = g_jobcount jobname = g_jobname sdlstrtdt = p_strtdt sdlstrttm = p_strttm EXCEPTIONS cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 invalid_target = 8 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
IUUC_SCHEDULE_WATCHDOG_LOGTAB - Schedule watchdog job to find entries in IUUC logging tables IUUC_SCHEDULE_WATCHDOG_LOGTAB - Schedule watchdog job to find entries in IUUC logging tables IUUC_SCAN_MAIN_BATCH - Program IUUC_SCAN_MAIN_BATCH IUUC_SCAN_MAIN_BATCH - Program IUUC_SCAN_MAIN_BATCH IUUC_SCAN_MAIN - Main program of the Code Scanner IUUC_SCAN_MAIN - Main program of the Code Scanner