Accounting Information in JCL is used to provide billing and resource tracking data for a job. This information is specified in the JOB statement and is used by the installation's job accounting routines to associate the computing resources used by the job with specific departments, projects, or users for billing and reporting purposes.
1//jobname JOB (accounting-information),programmer-name[,keyword-parameters]
The accounting information is enclosed in parentheses. Its format is installation-dependent but typically includes:
1//jobname JOB (account-number[,additional-accounting-fields]),programmer-name
While the actual content is installation-specific, accounting information typically includes some combination of:
1//MYJOB JOB (D58472),SMITH
A simple job with a single accounting field (account number D58472)
1//COMPILE JOB (D58472,DEPT58,PAYROLL),'JOHN SMITH'
Job with multiple accounting fields: account number, department, and project
1//WEEKLY JOB (D58472,10,50),'SMITH',CLASS=A
Job with accounting fields for account number, maximum run time (10 minutes), and maximum lines of output (50,000)
1//REPORT JOB ,SMITH,ACCT=(D58472,DEPT58,PAYROLL)
Alternative way to specify accounting information using the ACCT parameter
//JOBNAME JOB ,PROGRAMMER
//JOBNAME JOB