Questions tagged [tivoli-work-scheduler]

Tivoli Workload Scheduler (TWS) is an automation tool capable of executing jobs monitoring events, controlling flow, and managing dependencies on a variety of platforms and across distributed environments. TWS (formerly Mestro) is part of the IBM Tivoli Workload Automation suite, which also includes Workload Scheduler for z/OS (formerly OPC).

50 questions
3
votes
1 answer

Scheduling a repeating job in Tivoli Workload Scheduler

I have to create a jobstream with three jobs in it. I want to schedule each job individually. So say I created a jobstream 'MAINJOBSTREAM_D' in which I have three jobs: 'BEGIN_BATCH', 'MAINJOB' and 'END_BATCH'. I want BEGIN_BATCH job to start…
Lucifer
  • 33
  • 1
  • 6
2
votes
1 answer

ServiceNow integration with Airflow

Can we integrate ServiceNow with Airflow ? I mean if there is any DAG failure, can we rerun the failed DAG/tasks by submitting a ServiceNow request ? Also can we submit an adhoc job to run using ServiceNow. Thanks in advance.
Afz Abd
  • 423
  • 3
  • 19
2
votes
1 answer

TWSz Java API Set duration

When I try set duration using this code: Job job = new Job(); job.setName("5"); long dur = 1000; job.setEstimatedDuration(1000); job.setPriority(-1); ZOSJobDefinition jobDef = new ZOSJobDefinition(); jobDef.setFlowTargetKey(new…
moral
  • 81
  • 8
2
votes
1 answer

TWSz Java API current plan status

Is it possible to get Current Plan status using Java API? I try to call many methods from ZConnPlan but without success. Maybe is another way?
moral
  • 81
  • 8
1
vote
2 answers

TWS job failing. ERROR jobmon was unable to retrieve user information

I am configuring TWS job in one of our application windows server but when the job triggered it is throwing the below exception. I am using domain user to execute the job. AWSBDW079E Jobman could not run the job because the system call used to…
Sohail Ashraf
  • 10,078
  • 2
  • 26
  • 42
1
vote
2 answers

How to read .xml into memory and write out the same result

I am trying to read a .xml file, change some values (not yet), and write it back out. Without making any changes, I expect to get the same thing comeing out as went in. It does not. PS H:\src\tws> type .\test000.xml
lit
  • 14,456
  • 10
  • 65
  • 119
1
vote
1 answer

How to access IBM Tivoli logs for a Job?

I need to access the logs in Tivoli when a job fails but I don't know the steps. Can some one please let me know the steps on how to access the logs? Tivoli version is 8.6
David
  • 257
  • 1
  • 8
  • 24
1
vote
1 answer

Low performance of the new Graphical Views in Dynamic Workload Scheduler

have you got any tips to optimize the performance of the new Graphical Views when managing hundreds of objects?
1
vote
1 answer

How to find the job which abended on X SchedTime in TWS(In command line)

I want the jobs which are abended before 11 day from today(SchedTime) in TWS Like I use conman ss @#@+state=abend to know the jobs in abended status But now I want the job which are in abeded status from last 11 days in current plan in TWS
1
vote
1 answer

Using OR Operator for File Dependencies

I want to add the file dependency to a job. Suppose there are 2 files 1 : Test.Pdf 2 : Test.xml Whenever there is either of the file(any one of the file or both) the job should trigger. I tried multiple qualifiers but not getting the desired…
1
vote
1 answer

Add jobStreamInstance

I'm trying to add application to CP using method: addJobStreamInstance(Identifier jobStreamId, java.util.Date inputArrivalTime, java.lang.String alias, Context context) but I getting the error AWSJCS011E An internal error has occurred. The error…
moral
  • 81
  • 8
1
vote
1 answer

IBM TWS Java API queryFilter

How to find job stream using job name? When I use this code: QueryFilter queryFilter = new QueryFilter(); queryFilter.setFilter(JobStreamFilters.JOB_NAME, "JOBNAME"); QueryResult…
moral
  • 81
  • 8
1
vote
2 answers

API for Tivoli Workload Scheduler (TWS)

Is there an API for IBM TWS? The closest I have found is some sort of settings file or fat xml strings to send to something. I would prefer something Dotnet and Rest but beggars can't be choosers. (my google fu isn't that bad but IBM docs seem to…
LosManos
  • 7,195
  • 6
  • 56
  • 107
1
vote
2 answers

How to call EJB from another app on the same server?

I have java SE sample client which run on desktop (code below). But I have access to WebSphere were called EJB is deployed. How to rewrite below code to work on WebSphere? (When I leave this code just like it is program works but I think this can be…
1
vote
3 answers

Tivoli Workload Scheduler [TWS] Conditional Dependency - How to implement?

I am reaching to SME on the subject after trying to figure out the solution of below scenario. I have a very specific requirement: 1) Say I have a schedule called SCH1, having 3 jobs JOB1, JOB2 and JOB3 like: Schedule S1 JOB1 JOB2 FOLLOWS…
Gyanendra Dwivedi
  • 5,511
  • 2
  • 27
  • 53
1
2 3 4