<?xml version="1.0" encoding="UTF-8"?>
<!--
	List of jobs to be executed by the batchjobs request handler.
	Jobs are executed one by one, ordered first by phase and then by order.
	The next job is started only if the previous job has finished.
	
	Supported phases: preDeploy and postDeploy (first jobs from preDeploy phase are executed)
	A job will be executed only if its "enabled" attribute is true.
	
	Attributes description and possible values:
	phase - In which phase the job should be executed - before deployment (preDeploy), after deployment (postDeploy)

    order - sequence order within the phase 

    name - name of the job, for example "BTCTRNS1", "AP_PI_UPG_BEFORE"

    maxDuration -  duration in seconds, after which job will be considered unsuccessfully executed

    enabled - if true, the job will be started by the handler; false - the job will not be started.
    
    jobStatus - job status from the point of SLC. 0 - not started, 1 - started, 2- finished, -1 - failed, 3- unknown

    jobCount - when started, the job receives a job count, by which its status can be tracked later.

    logFile - path to job's logfile to be scanned for errors. Some jobs don't have a logfile. The path 
    to the logfile depends on the job. Here you just tell the handler where to search for the logfile.

	client - ABAP client where the job must be executed (000 or 001).
	    
    For each request, a copy of this file is created in SDT/data/BATCHJOBS_handlerId_/batchjobs.xml
	and track of the jobs execution is kept there.
    jobStatus and jobCount will be updated by the handler in the history file as the job is being executed. 
-->

<jobs>
	<job phase="preDeploy" order="1" name="BTCTRNS1" maxDuration="300" enabled="false" client="000" jobStatus="0" jobCount="" jobVariant="" logFile=""></job>
	<job phase="preDeploy" order="2" name="AP_PI_UPG_BEFORE" maxDuration="300" enabled="false" client="001" jobStatus="0" jobCount="" jobVariant="TESTVARIANT" logFile=""></job>

	<job phase="postDeploy" order="1" name="BTCTRNS2" maxDuration="300" enabled="false" client="000" jobStatus="0" jobCount="" jobVariant="" logFile=""></job>
</jobs>