SAP Reports / Programs

IUUC_SCHEDULE_WATCHDOG_LOGTAB SAP ABAP Report - Schedule watchdog job to find entries in IUUC logging tables







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


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

IUUC_SCHED_WATCHDOG - Schedule job to find entries in log.


ABAP code to call this SAP report using the submit statement

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.






SUBMIT IUUC_SCHEDULE_WATCHDOG_LOGTAB. "Basic submit
SUBMIT IUUC_SCHEDULE_WATCHDOG_LOGTAB AND RETURN. "Return to original report after report execution complete
SUBMIT IUUC_SCHEDULE_WATCHDOG_LOGTAB VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT IUUC_SCHEDULE_WATCHDOG_LOGTAB

INCLUDE CNV_MBT_SM_PARAMS.
INCLUDE CNV_MBT_SM_MACROS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name IUUC_SCHEDULE_WATCHDOG_LOGTAB or its description.