Do you know if there is any way to know the status of all the jobs (from a view or environment) at a certain moment or time.
A complete list. From autosys or WCC.
Example:
I would like to know the status of ABC123_jobs* for the date 15/05/23 dd/mm/yy
Autosys 12.x
WCC
WebUI
Option 1:
to run a report for status as a certain point in time please review the
Web UI Reporting Application
https://techdocs.broadcom.com/us/en/ca-enterprise-software/intelligent-automation/autosys-workload-automation/12-1/monitoring-and-reporting/ca-wcc-monitoring-and-reporting/ca-wcc-reporting-application.html
Option 2:
Below AutoSys REST Web Service request would work for your need.
https://rest_machine_name:9443/AEWS/job-run-info?filter=name==job_name;runEndTime==date
Examples:
With the Exact Job Name and on a specific date
https://rest_machine_name:9443/AEWS/job-run-info?filter=name==AddRow;runEndTime==2023-06-06
With Job Name in regex and date greater than
https://rest_machine_name:9443/AEWS/job-run-info?filter=name=@Add*;runEndTime>2023-06-06