How to fix Endevor Web Service spawn task ACCT statement error?
S WSEWSSTC,PARM='BC1PAPI0'
$HASP100 WSEWSSTC ON STCINRDR
N$ME036I WSEWSSTC ACCT= not found on EXEC statement(s)
IEF695I START WSEWSSTC WITH JOBNAME WSEWSSTC IS ASSIGNED TO USER
WSEWSSTC, GROUP $STCMVS
$HASP373 WSEWSSTC STARTED
IEF403I WSEWSSTC - STARTED - TIME=12.33.59
CATC0002I CA-CCS Tomcat started in: 263345 ms (Apache Tomcat/9.0.44)
Release : 18.1
Component : Endevor Software Change Manager
There are two options to fix the ACCT statement error:
1. Add a JOBCARD to WSEWSSTC JCL with specific account number. here is the example:
//WSEWSSTC JOB (111111111),'WSEWSSTC',CLASS=A,MSGCLASS=4
//WSEWSSTC PROC
...
// PEND
//STEP1 EXEC WSEWSSTC
2. Adding an account number to ENF PROCESS statement for Endevor Web Service:
PROCESS PROCESS_TYPE=MVS_STC,
PROCNAME=WSEWSSTC,
PROC_OPTIONS='ACCT=111111111',
PARM='BC1PAPI0'
Recycle ENF address space after the change in ENF paramter file for Endevor Web Service, so new parameters will be in effect.
For Option 2 WSEWSSTC JCL will contain just a PROC statement (No Jobcard, and No need to code PEND and step to call WSEWSSTC):
//WSEWSSTC PROC
...