We need to schedule a batch script on an AS400 server.
The following job definition does not work
AS400_JOB OS400_999
AGENT <agentname>
RUN DAILY
COMMAND call PGM(/<path>/<script>)
ENDJOB
Release : 12.0
Component : ESP Workload Automation System Agent
Use UNIX_JOB instead of AS400_JOB.
Example:
UNIX_JOB OS400_999
AGENT <agentname>
RUN DAILY
SCRIPTNAME /<path>/<script>
ENDJOB