<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to know the batch jobs scheduled times in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816420#M24504</link>
    <description>&lt;P&gt;All I want extracted is the event type and event description (see photo).&amp;nbsp; I am guessing this is a part of "event_uri, but how do I find the variable names for event type and event description?&amp;nbsp; (or is it as simple as event_type and event_desc, for instance?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;rc=metadata_getattr(event_uri,"Id",event_id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, now do I use the metabrowse function? Is there sample code somewhere? I have no idea the syntax.&amp;nbsp; "You may want to use the metabrowse function of base SAS to visualize these associations for something as complex as a flow".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bruno7_0-1654287510244.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71991i996D9E8C5FA4AD0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bruno7_0-1654287510244.png" alt="Bruno7_0-1654287510244.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jun 2022 20:18:36 GMT</pubDate>
    <dc:creator>Bruno7</dc:creator>
    <dc:date>2022-06-03T20:18:36Z</dc:date>
    <item>
      <title>How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640462#M18730</link>
      <description>&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;How can we&amp;nbsp; find out the list of jobs and timings for batch jobs(ie: how many batch jobs are running on SAS and what time those are scheduled/triggering time).&lt;/P&gt;&lt;P&gt;at the moment, I am checking manually by logging into flow manager for each flow and&amp;nbsp; at running state as this is not ideal.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;SS&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 14:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640462#M18730</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-04-16T14:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640480#M18731</link>
      <description>&lt;P&gt;This program will extract flows and their schedules from Metadata into a SAS Dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/* ---------------------------------------------------[query_job_schedules.sas]-------------------------------- *
 * The purpose of this program is to extract for flows defined in Metadata the schedule associated with them.   *
 * Author: Greg Wootton Date: 06DEC2019 								        *
 *														*
 * Note: Schedules appear differently depending on the scheduling server.					*
 * ------------------------------------------------------------------------------------------------------------ */

/* Specify connection information for the Metadata Server */

options
	metaserver="meta.demo.sas.com"
	metaport=8561
	metauser="sasadm@saspw"
	metapass="password"
	metarepository=Foundation
	metaprotocol=BRIDGE;

/* End edit. */

/* Create a data set to hold the flows and schedules. */
data work.schedule;
	/* define and initialize variables */
	length type $ 22 id flow_id job_id flowjob_id sync_id event_id $ 17 flow_uri flowjob_uri job_uri sync_uri event_uri property_uri $ 60 flow_name flowjob_name job_name sync_name event_name $ 32 schedule $ 255 time $ 50;
	call missing(type,id,flow_id,job_id,sync_id,event_id,flow_uri,job_uri,sync_uri,event_uri,property_uri,flow_name,job_name,event_name,sync_name,schedule,time,flowjob_name,flowjob_id,flowjob_uri);
	keep flow_name job_name time schedule;

    /* This query identifies flows defined in Metadata. */
	flow_obj="omsobj:TransformationActivity?@Id contains '.'";

	/* check for the existence of flows */
	flow_count=metadata_resolve(flow_obj,type,id);

	/* Write number of flows found to SAS log. */
	put "INFO: Number of Flows Found: " flow_count;

	/* if flows exist, walk through gathering the name of the flow, the associated job, and the schedule if one exists. */
	if flow_count &amp;gt; 0 then do n=1 to flow_count;
		rc=metadata_getnobj(flow_obj,n,flow_uri);
		rc=metadata_getattr(flow_uri,"Name",flow_name);
		rc=metadata_getattr(flow_uri,"Id",flow_id);
		rc=metadata_getnasn(flow_uri,"Steps",1,job_uri);
		rc=metadata_getattr(job_uri,"Name",job_name);
		put "INFO: Flow " n "Name: " flow_name;
		job_count=metadata_resolve("omsobj:JFJob?JFJob[JobActivities/TransformationActivity[@Id='"||flow_id||"']]",type,id);
		if job_count &amp;gt; 0 then do m=1 to job_count;
			rc=metadata_getnobj("omsobj:JFJob?JFJob[JobActivities/TransformationActivity[@Id='"||flow_id||"']]",m,flowjob_uri);
			rc=metadata_getattr(flowjob_uri,"Name",flowjob_name);
			rc=metadata_getattr(flowjob_uri,"Id",flowjob_id);
			sync_count=metadata_resolve("omsobj:SyncStep?SyncStep[Transformations/JFJob[@Id='"||flowjob_id||"']]",type,id);
			if sync_count &amp;gt; 0 then do o=1 to sync_count;
			rc=metadata_getnobj("omsobj:SyncStep?SyncStep[Transformations/JFJob[@Id='"||flowjob_id||"']]",o,sync_uri);
			rc=metadata_getattr(sync_uri,"Name",sync_name);
			rc=metadata_getattr(sync_uri,"Id",sync_id);
			event_count=metadata_resolve("omsobj:Event?Event[TriggeredTransforms/SyncStep[@Id='"||sync_id||"']]",type,id);
				if event_count &amp;gt; 0 then do p=1 to event_count;
				rc=metadata_getnobj("omsobj:Event?Event[TriggeredTransforms/SyncStep[@Id='"||sync_id||"']]",p,event_uri);
				rc=metadata_getattr(event_uri,"Name",event_name);
				rc=metadata_getattr(event_uri,"Id",event_id);
				rc=metadata_getattr(event_uri,"Condition",time);
				put "INFO: Condition = " time;
				prop_rc=metadata_getnasn(event_uri,"Properties",2,property_uri);
					if prop_rc &amp;gt; 0 then do;
						rc=metadata_getattr(property_uri,"DefaultValue",schedule);
						 output;
						put "INFO: Schedule = " schedule;	
					end;
					else put "INFO: No properties found for event" event_name;
				end;
			else put "INFO: No events found in syncstep " sync_name;
			end;
			else put "INFO: No syncsteps found in job " job_name;
		end;
		else put "INFO: No jobs found in flow " flow_name;
	end;
	else put "INFO: No flows found.";
run;
	
/* Print the dataset created. */	
proc print data=work.schedule; run;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640480#M18731</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2020-04-16T16:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640485#M18732</link>
      <description>Thanks a lot.&lt;BR /&gt;saved my life &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640485#M18732</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2020-04-16T16:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640527#M18733</link>
      <description>Hi Greg,&lt;BR /&gt;&lt;BR /&gt;Thank you for providing the SAS Code. I ran the code and there are notes in the SAS Log showing Flows (#34-#155) that I don't understand what they are and how they show up in the log. I can account for the 24 Flows in the table. However the "schedule" column is blank. Please advise.&lt;BR /&gt;&lt;BR /&gt;[cid:image001.png@01D61406.943774F0]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;61&lt;BR /&gt; 62         /* ---------------------------------------------------[query_job_schedules.sas]-------------------------------- *&lt;BR /&gt;63          * The purpose of this program is to extract for flows defined in Metadata the schedule associated with them.   *&lt;BR /&gt;64          * Author: Greg Wootton Date: 06DEC2019         *&lt;BR /&gt;65          **&lt;BR /&gt;66          * Note: Schedules appear differently depending on the scheduling server.*&lt;BR /&gt;67          * ------------------------------------------------------------------------------------------------------------ */&lt;BR /&gt;68&lt;BR /&gt; 69         /* Specify connection information for the Metadata Server */&lt;BR /&gt;70&lt;BR /&gt; 71         options&lt;BR /&gt;72         metaserver="itsusralsp04835.jnj.com"&lt;BR /&gt;73         metaport=8561&lt;BR /&gt;74         metauser="sasadm@saspw"&lt;BR /&gt;75         metapass=XXXXXXXXXXX&lt;BR /&gt;76         metarepository=Foundation&lt;BR /&gt;77         metaprotocol=BRIDGE;&lt;BR /&gt;78&lt;BR /&gt; 79         /* End edit. */&lt;BR /&gt;80&lt;BR /&gt; 81         /* Create a data set to hold the flows and schedules. */&lt;BR /&gt;82         data work.schedule;&lt;BR /&gt;83         /* define and initialize variables */&lt;BR /&gt;84         length type $ 22 id flow_id job_id flowjob_id sync_id event_id $ 17 flow_uri flowjob_uri job_uri sync_uri event_uri&lt;BR /&gt;84       ! property_uri $ 60 flow_name flowjob_name job_name sync_name event_name $ 32 schedule $ 255 time $ 50;&lt;BR /&gt;85         call&lt;BR /&gt;85       ! missing(type,id,flow_id,job_id,sync_id,event_id,flow_uri,job_uri,sync_uri,event_uri,property_uri,flow_name,job_name,event&lt;BR /&gt;85       ! _name,sync_name,schedule,time,flowjob_name,flowjob_id,flowjob_uri);&lt;BR /&gt;86         keep flow_name job_name time schedule;&lt;BR /&gt;87&lt;BR /&gt; 88             /* This query identifies flows defined in Metadata. */&lt;BR /&gt;89         flow_obj="omsobj:TransformationActivity?@Id contains '.'";&lt;BR /&gt;90&lt;BR /&gt; 91         /* check for the existence of flows */&lt;BR /&gt;92         flow_count=metadata_resolve(flow_obj,type,id);&lt;BR /&gt;93&lt;BR /&gt; 94         /* Write number of flows found to SAS log. */&lt;BR /&gt;95         put "INFO: Number of Flows Found: " flow_count;&lt;BR /&gt;96&lt;BR /&gt; 97         /* if flows exist, walk through gathering the name of the flow, the associated job, and the schedule if one exists. */&lt;BR /&gt;98         if flow_count &amp;gt; 0 then do n=1 to flow_count;&lt;BR /&gt;99         rc=metadata_getnobj(flow_obj,n,flow_uri);&lt;BR /&gt;100        rc=metadata_getattr(flow_uri,"Name",flow_name);&lt;BR /&gt;101        rc=metadata_getattr(flow_uri,"Id",flow_id);&lt;BR /&gt;102        rc=metadata_getnasn(flow_uri,"Steps",1,job_uri);&lt;BR /&gt;103        rc=metadata_getattr(job_uri,"Name",job_name);&lt;BR /&gt;104        put "INFO: Flow " n "Name: " flow_name;&lt;BR /&gt;105        job_count=metadata_resolve("omsobj:JFJob?JFJob[JobActivities/TransformationActivity[@Id='"||flow_id||"']]",type,id);&lt;BR /&gt;106        if job_count &amp;gt; 0 then do m=1 to job_count;&lt;BR /&gt;107        rc=metadata_getnobj("omsobj:JFJob?JFJob[JobActivities/TransformationActivity[@Id='"||flow_id||"']]",m,flowjob_uri);&lt;BR /&gt;108        rc=metadata_getattr(flowjob_uri,"Name",flowjob_name);&lt;BR /&gt;109        rc=metadata_getattr(flowjob_uri,"Id",flowjob_id);&lt;BR /&gt;110        sync_count=metadata_resolve("omsobj:SyncStep?SyncStep[Transformations/JFJob[@Id='"||flowjob_id||"']]",type,id);&lt;BR /&gt;111        if sync_count &amp;gt; 0 then do o=1 to sync_count;&lt;BR /&gt;112        rc=metadata_getnobj("omsobj:SyncStep?SyncStep[Transformations/JFJob[@Id='"||flowjob_id||"']]",o,sync_uri);&lt;BR /&gt;113        rc=metadata_getattr(sync_uri,"Name",sync_name);&lt;BR /&gt;114        rc=metadata_getattr(sync_uri,"Id",sync_id);&lt;BR /&gt;115        event_count=metadata_resolve("omsobj:Event?Event[TriggeredTransforms/SyncStep[@Id='"||sync_id||"']]",type,id);&lt;BR /&gt;116        if event_count &amp;gt; 0 then do p=1 to event_count;&lt;BR /&gt;117        rc=metadata_getnobj("omsobj:Event?Event[TriggeredTransforms/SyncStep[@Id='"||sync_id||"']]",p,event_uri);&lt;BR /&gt;118        rc=metadata_getattr(event_uri,"Name",event_name);&lt;BR /&gt;119        rc=metadata_getattr(event_uri,"Id",event_id);&lt;BR /&gt;120        rc=metadata_getattr(event_uri,"Condition",time);&lt;BR /&gt;121        put "INFO: Condition = " time;&lt;BR /&gt;122        prop_rc=metadata_getnasn(event_uri,"Properties",2,property_uri);&lt;BR /&gt;123        if prop_rc &amp;gt; 0 then do;&lt;BR /&gt;124        rc=metadata_getattr(property_uri,"DefaultValue",schedule);&lt;BR /&gt;125         output;&lt;BR /&gt;126        put "INFO: Schedule = " schedule;&lt;BR /&gt;127        end;&lt;BR /&gt;128        else put "INFO: No properties found for event" event_name;&lt;BR /&gt;129        end;&lt;BR /&gt;130        else put "INFO: No events found in syncstep " sync_name;&lt;BR /&gt;131        end;&lt;BR /&gt;132        else put "INFO: No syncsteps found in job " job_name;&lt;BR /&gt;133        end;&lt;BR /&gt;134        else put "INFO: No jobs found in flow " flow_name;&lt;BR /&gt;135        end;&lt;BR /&gt;136        else put "INFO: No flows found.";&lt;BR /&gt;137        run;&lt;BR /&gt;&lt;BR /&gt; INFO: Number of Flows Found: 155&lt;BR /&gt;INFO: Flow 1 Name: QAR40_VIBES_Raised_Events_Trigge&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20200416_@:1:27:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="1"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 2 Name: QAR40_VIBES_Raised_Events_Trigge&lt;BR /&gt;INFO: Condition = DA_sk1_st20200416_@:13:27:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 3 Name: QAR40_VIBES_Raised_Events_Trigge&lt;BR /&gt;INFO: Condition = DA_sk1_st20200416_@:1:32:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 4 Name: QAR43_NC_Lot_Selection_Phase_Tri&lt;BR /&gt;INFO: Condition = DA_sk1_st20200416_@:1,13:30:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 5 Name: QAR43_NC_Correction_Phase_Trigge&lt;BR /&gt;INFO: Condition = DA_sk1_st20200416_@:1:44:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 6 Name: QAR45_Trigger_JAX&lt;BR /&gt;INFO: Condition = DA_sk1_st20200323_@:6:01:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="3" day="23"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 7 Name: QAR45_Trigger_IRE&lt;BR /&gt;INFO: Condition = DA_sk1_st20200323_@:1:58:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="3" day="23"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 8 Name: Daily_NC_Trigger&lt;BR /&gt;INFO: Condition = DA_sk1_st20200324_@:5:55:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="3" day="24"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 9 Name: QAR53_Shipping_Data_ETL_Trigger&lt;BR /&gt;INFO: No syncsteps found in job QAR53_Shipping_Data_ETL_Trigger&lt;BR /&gt;INFO: Flow 10 Name: corona_keyword_search&lt;BR /&gt;INFO: Condition = WE_dm64_sk1_st20200312_@:17:00:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="64"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="3" day="12"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 11 Name: QAR_Selection_Variables&lt;BR /&gt;INFO: Condition = DA_sk1_st20200311_@:5:00:1&lt;BR /&gt;INFO: No properties found for eventTimeEvent&lt;BR /&gt;INFO: Flow 12 Name: jjsv_capa_data_pull&lt;BR /&gt;INFO: Condition = DA_sk1_st20200224_et20200320_@:4:00:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="2" day="24"&gt;&lt;/STARTTIME&gt;&lt;ENDTIME year="2020" month="3" day="20"&gt;&lt;/ENDTIME&gt;&lt;/DAILY&gt;&amp;lt;&lt;BR /&gt;/schedule&amp;gt;&lt;BR /&gt;INFO: Flow 13 Name: OSP_Complaint_Data_Extract&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20200131_@:6:00:1&lt;BR /&gt;INFO: No properties found for eventTimeEvent&lt;BR /&gt;INFO: Flow 14 Name: QAR_Task_Cleanup&lt;BR /&gt;INFO: Condition = DA_sk1_st20200110_@:1:00:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="1" day="10"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 15 Name: jjsv_catsweb_extract&lt;BR /&gt;INFO: Condition = DA_sk1_st20200109_@:3:00:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="1" day="9"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 16 Name: QAR45_IRE&lt;BR /&gt;INFO: No events found in syncstep Flow Triggering Event&lt;BR /&gt;INFO: Flow 17 Name: QAR45_JAX&lt;BR /&gt;INFO: No events found in syncstep Flow Triggering Event&lt;BR /&gt;INFO: Flow 18 Name: days_of_supply_mbox&lt;BR /&gt;INFO: Condition = DA_sk1_st20190927_@:7:15:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="9" day="27"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 19 Name: driver_mdr_report&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20190916_@:7:00:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="1"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="9" day="16"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 20 Name: QAR40_Ireland_Quality_All_Open_N&lt;BR /&gt;INFO: Condition = DA_sk1_st20190821_@:1,13:50:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="8" day="21"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 21 Name: QAR43_FAI_Phase_Check_Trigger&lt;BR /&gt;INFO: Condition = DA_sk1_st20190821_@:6:00:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="8" day="21"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 22 Name: QAR40_Open_NC_Supplier_Related_I&lt;BR /&gt;INFO: No syncsteps found in job QAR40_Open_NC_Supplier_Related_I&lt;BR /&gt;INFO: Flow 23 Name: QAR40_NC_Event_Pushed_to_Finish_&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20190821_@:3:00:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="1"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="8" day="21"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 24 Name: QAR40_IE_VIBES_Pending_Correctio&lt;BR /&gt;INFO: Condition = WE_dm64_sk1_st20190821_@:23:30:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="64"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="8" day="21"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 25 Name: QAR40_IE_All_Open_NC_Indicator_T&lt;BR /&gt;INFO: Condition = DA_sk1_st20200303_@:1:55:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="3" day="3"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 26 Name: One_Voice&lt;BR /&gt;INFO: Condition = DA_sk1_st20190624_@:2:00:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="6" day="24"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Condition = DA_sk1_st20190624_@:2:00:1&lt;BR /&gt;INFO: No properties found for eventTimeEvent&lt;BR /&gt;INFO: Flow 27 Name: Shipping&lt;BR /&gt;INFO: Condition = DA_sk1_st20190624_@:3:05:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2019" month="6" day="24"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 28 Name: daily_listing_slug_microlens&lt;BR /&gt;INFO: Condition = DA_sk1_st20180727_@:7:00:1&lt;BR /&gt;INFO: Schedule = &lt;SCHEDULE&gt;&lt;DAILY&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2018" month="7" day="27"&gt;&lt;/STARTTIME&gt;&lt;/DAILY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 29 Name: ireland_fm_weekly&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20180508_@:6:00:1&lt;BR /&gt;INFO: No properties found for eventTimeEvent&lt;BR /&gt;INFO: Flow 30 Name: derive_regrpt&lt;BR /&gt;INFO: No events found in syncstep Flow Triggering Event&lt;BR /&gt;INFO: Flow 31 Name: tableau_data_subset_mod&lt;BR /&gt;INFO: Condition = WE_dm64_sk1_st20200225_@:1:00:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;WEEKLY daystorun="64"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="2" day="25"&gt;&lt;/STARTTIME&gt;&lt;/WEEKLY&gt;&lt;/SCHEDULE&gt;&lt;BR /&gt;INFO: Flow 32 Name: Customer_Relations_auto_monthly_&lt;BR /&gt;INFO: Condition = MO_dw2ww2_sk1_st20200416_@:7:30:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt; &lt;SCHEDULE&gt;&lt;MONTHLY dayofweek="2" whichweek="2"&gt;&lt;SKIPCOUNT count="1"&gt;&lt;/SKIPCOUNT&gt;&lt;STARTTIME year="2020" month="4" day="16"&gt;&lt;/STARTTIME&gt;&lt;/MONTHLY&gt;&lt;/SCHEDULE&gt;&amp;gt;&lt;BR /&gt;INFO: Condition = MO_dw2ww2_sk1_st20200416_@:7:30:1&lt;BR /&gt;INFO: No properties found for eventTimeEvent&lt;BR /&gt;INFO: Flow 33 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 34 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 35 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 36 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 37 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 38 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 39 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 40 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 41 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 42 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 43 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 44 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 45 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 46 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 47 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 48 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 49 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 50 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 51 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 52 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 53 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 54 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 55 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 56 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 57 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 58 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 59 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 60 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 61 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 62 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 63 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 64 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 65 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 66 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 67 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 68 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 69 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 70 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 71 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 72 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 73 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 74 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 75 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 76 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 77 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 78 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 79 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 80 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 81 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 82 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 83 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 84 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 85 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 86 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 87 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 88 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 89 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 90 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 91 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 92 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 93 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 94 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 95 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 96 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 97 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 98 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 99 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 100 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 101 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 102 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 103 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 104 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 105 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 106 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 107 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 108 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 109 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 110 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 111 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 112 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 113 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 114 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 115 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 116 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 117 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 118 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 119 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 120 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 121 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 122 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 123 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 124 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 125 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 126 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 127 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 128 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 129 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 130 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 131 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 132 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 133 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 134 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 135 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 136 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 137 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 138 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 139 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 140 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 141 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 142 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 143 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 144 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 145 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 146 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 147 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 148 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 149 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 150 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 151 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 152 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 153 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 154 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;INFO: Flow 155 Name: New Transformation Activity&lt;BR /&gt;INFO: No jobs found in flow New Transformation Activity&lt;BR /&gt;NOTE: The data set WORK.SCHEDULE has 24 observations and 4 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.SCHEDULE increased size by 100.00 percent.&lt;BR /&gt;       Compressed is 2 pages; un-compressed would require 1 pages.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;       real time           1.44 seconds&lt;BR /&gt;       user cpu time       0.43 seconds&lt;BR /&gt;       system cpu time     0.14 seconds&lt;BR /&gt;       memory              6720.28k&lt;BR /&gt;       OS Memory           37532.00k&lt;BR /&gt;       Timestamp           04/16/2020 01:23:24 PM&lt;BR /&gt;       Step Count                        63  Switch Count  2032&lt;BR /&gt;       Page Faults                       0&lt;BR /&gt;       Page Reclaims                     1730&lt;BR /&gt;       Page Swaps                        0&lt;BR /&gt;       Voluntary Context Switches        14328&lt;BR /&gt;       Involuntary Context Switches      6706&lt;BR /&gt;       Block Input Operations            0&lt;BR /&gt;       Block Output Operations           264&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; 138&lt;BR /&gt; 139        /* Print the dataset created. */&lt;BR /&gt;140        proc print data=work.schedule; run;&lt;BR /&gt;&lt;BR /&gt; NOTE: There were 24 observations read from the data set WORK.SCHEDULE.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;       real time           0.08 seconds&lt;BR /&gt;       user cpu time       0.08 seconds&lt;BR /&gt;       system cpu time     0.00 seconds&lt;BR /&gt;       memory              1996.62k&lt;BR /&gt;       OS Memory           31900.00k&lt;BR /&gt;       Timestamp           04/16/2020 01:23:24 PM&lt;BR /&gt;       Step Count                        64  Switch Count  0&lt;BR /&gt;       Page Faults                       0&lt;BR /&gt;       Page Reclaims                     23&lt;BR /&gt;       Page Swaps                        0&lt;BR /&gt;       Voluntary Context Switches        1&lt;BR /&gt;       Involuntary Context Switches      1&lt;BR /&gt;       Block Input Operations            0&lt;BR /&gt;       Block Output Operations           24&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; 141&lt;BR /&gt; 142&lt;BR /&gt; 143        OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;156&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Jose-Luis Ochoa&lt;BR /&gt;Principal Engineer QA Systems&lt;BR /&gt;Johnson &amp;amp; Johnson Vision&lt;BR /&gt;&lt;BR /&gt;Johnson &amp;amp; Johnson Vision Care, Inc.&lt;BR /&gt;7500 Centurion Pkwy., Jacksonville, FL 32256&lt;BR /&gt;T: +1 904 443 1092&lt;BR /&gt;jochoa6@its.jnj.com&lt;JOCHOA6&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/JOCHOA6&gt;&lt;/SCHEDULE&gt;</description>
      <pubDate>Thu, 16 Apr 2020 19:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640527#M18733</guid>
      <dc:creator>Jlochoa</dc:creator>
      <dc:date>2020-04-16T19:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640531#M18734</link>
      <description>This is because of the scheduling server being used, your entire schedule is under time (condition in the log), listing the calendar being used and time.&lt;BR /&gt;&lt;BR /&gt;INFO: Flow 1 Name: QAR40_VIBES_Raised_Events_Trigge&lt;BR /&gt;INFO: Condition = WE_dm1_sk1_st20200416_@:1:27:1&lt;BR /&gt;INFO: Schedule =&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Apr 2020 20:00:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640531#M18734</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2020-04-16T20:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640536#M18735</link>
      <description>SAS Log showing Flows (#34-#155) that I don't understand. What they are and how they show up in the log.&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Apr 2020 20:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640536#M18735</guid>
      <dc:creator>Jlochoa</dc:creator>
      <dc:date>2020-04-16T20:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640551#M18736</link>
      <description>This is because the of the way the program is written. It defines flows as any TransformationActivity metadata object type and it will write out every one it finds to the log, but not all TransformationActivity objects are flows. The code could be updated to not do that.</description>
      <pubDate>Thu, 16 Apr 2020 20:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/640551#M18736</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2020-04-16T20:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816383#M24502</link>
      <description>&lt;P&gt;How can I get a listing of all field names that are available for extract from metadata?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like from the code examples I am seeing that the metadata is organized into broad categories: job_uri_event_uri, file_uri, dir_uri, etc.&lt;/P&gt;&lt;P&gt;How can I know the names of the fields available for extract under each uri?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently needing to extract job condition so that I can view job dependency set up within a flow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Examples of these "_uri"s in the code.....&lt;/P&gt;&lt;P&gt;rc=metadata_getnasn(file_uri,"Directories",1,dir_uri);&lt;BR /&gt;rc=metadata_getattr(dir_uri,"DirectoryName",dir_name);&lt;BR /&gt;rc=metadata_getnasn(job_uri,"TargetSpecifications",1,dsbs_uri);&lt;BR /&gt;rc=metadata_getattr(dsbs_uri,"Id",dsbs_id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not seeing anything tangible I can use in the SAS online metadata documentation:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/omamodref/67417/HTML/default/viewer.htm#omamodrefwhatsnew94.htm" target="_blank"&gt;What's New: What's New in SAS 9.4 Metadata Model: Reference :: SAS(R) 9.4 Metadata Model: Reference&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 18:39:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816383#M24502</guid>
      <dc:creator>Bruno7</dc:creator>
      <dc:date>2022-06-03T18:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816398#M24503</link>
      <description>The metadata model documentation indicates each object type and it's fields. You may want to use the metabrowse function of base SAS to visualize these associations for something as complex as a flow. This will also show you all the attributes for each object.&lt;BR /&gt;&lt;BR /&gt;Obtaining Metadata Names and Identifiers&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/p1sx3unuqtoykbn141wrhpcj3n1t.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/p1sx3unuqtoykbn141wrhpcj3n1t.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The flow object is of type JFJob with a PublicType attribute of "DeployedFlow".&lt;BR /&gt;It has an association "JobActivities" that points to a TransformationActivity object type with the same name as the flow.&lt;BR /&gt;The TransformationActivity object has a "Steps" association that includes TransformationStep objects for each deployed job in the flow, and possibly SyncStep objects for things like grouping gate nodes.&lt;BR /&gt;&lt;BR /&gt;The TransformationStep objects are associated with the individual job objects (JFJob objects of PublicType "DeployedJob") as well potentially as having PredecessorDependencies and SuccessorDependencies associations to StepPrecendence objects to describe the precedence between the jobs and the qualifier (e.g. job completes successfully). Those StepPrecedence objects will have Predecessors and Successors associations to tie them to the next TransformationStep or SyncStep in the flow.&lt;BR /&gt;&lt;BR /&gt;So, the TransformationStep objects without a PredecessorDependencies association are the ones that go first, and those without a SuccessorDependencies association go last, and those with both are in between, and the StepPrecendence objects are what link them together.&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Jun 2022 19:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816398#M24503</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2022-06-03T19:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816420#M24504</link>
      <description>&lt;P&gt;All I want extracted is the event type and event description (see photo).&amp;nbsp; I am guessing this is a part of "event_uri, but how do I find the variable names for event type and event description?&amp;nbsp; (or is it as simple as event_type and event_desc, for instance?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;rc=metadata_getattr(event_uri,"Id",event_id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, now do I use the metabrowse function? Is there sample code somewhere? I have no idea the syntax.&amp;nbsp; "You may want to use the metabrowse function of base SAS to visualize these associations for something as complex as a flow".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bruno7_0-1654287510244.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71991i996D9E8C5FA4AD0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bruno7_0-1654287510244.png" alt="Bruno7_0-1654287510244.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 20:18:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816420#M24504</guid>
      <dc:creator>Bruno7</dc:creator>
      <dc:date>2022-06-03T20:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to know the batch jobs scheduled times</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816429#M24505</link>
      <description>In my code, the "event" is referring to the triggering event for the flow, not the transition between each job inside a flow. Each of those connections in your flow is a StepPrecedence object I mentioned. In your screen shot you are looking at one of many.&lt;BR /&gt;&lt;BR /&gt;The link I provided mentions the metabrowse function. You type "metabrowse" into the command window in the top left of the windowed base SAS session and hit enter to start it, and it will prompt you for connection information to Metadata.</description>
      <pubDate>Fri, 03 Jun 2022 20:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-know-the-batch-jobs-scheduled-times/m-p/816429#M24505</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2022-06-03T20:32:47Z</dc:date>
    </item>
  </channel>
</rss>

