AMBLIST Example
//JOBCARD
//STEP1 EXEC PGM=AMBLIST
//SYSIN DD *
LISTIDR
//SYSLIB DD DSN=CIG.PRODUCT.LOADLIB,DISP=SHR
//SYSPRINT DD SYSOUT=*
This page contains some commonly required diagnostic JCL and traces
specifications
CIG TRACES
The following table outlines the CIG traces available to the user and to technical
support. All of the traces are enabled via allocation of a ddname in batch or with
the TSO ALLOCATE function.
If in Batch //CIGLOG DD SYSOUT=*
If in TSO TSO ALLOC FI(CIGLOG) DSN(*) SHR REUSE
Trace
|
Purpose
|
Where Invoked
|
How to allocate
|
CIGLOG
|
General Purpose Log
|
Exits and Utilities
|
Batch and TSO
|
CIGTRACE
|
General Purpose Trace for expanded messages into CIGOUT or CIGLOG.
|
Exits and Utilities
|
DUMMY
|
CIGVTRAX
|
High Level VSAM Trace
|
All programs with Database access
|
Batch and TSO
|
CIGZTRAX
|
Low Level VSAM trace
|
All programs with Database access
|
Batch and TSO
|
CIGPTRAX
|
Parser trace
|
All programs with syntax input
|
Batch and TSO
|
CIGCTRAX
|
Low Level Storage Trace
|
All programs
|
Batch and TSO
|
CIGFTP
|
Breeze Applet Request Trace
|
Breeze
|
Batch only
|
CIGXLSTN
|
Breeze Server LIstener Trace
|
Breeze
|
Batch only
|
CIGXSUBT
|
Breeze Server Subtask Trace
|
Breeze
|
Batch only
|
EN$TRXIT
|
Endevor Exit Trace
|
Endevor Exits
|
Batch and TSO
|
|
PRINTINI Utility
PRINTINI is a program designed to help you verify the active CIGINI in the path. To
use this utility, code a small CLIST as follows. The dataset called should contain
the current CIGFEXEC and CIGINI file. Copy this CLIST into a SYSPROC dataset or
execute from option 6.
PRINTINI Utility JCL
//STEP1 EXEC PGM=PRINTINI
//STEPLIB DD DSN=flhq1.flhq2.LOADLIB,DISP=SHR
//CIGRPINT DD SYSOUT=*
PRINTINI Utility CLIST
ALLOCATE FI(CIGPRINT) DSN(*) SHR REUSE
CALL ‘flhq1.flhq2.LOADLIB(PRINTINI)'
WRITE ****SUCCESS****
FREE FI(CIGPRINT)
Enter “TSO PRINTINI”.
CIGINFO Utility JCL
You can run the CIGINFO utility. Here is the JCL:
//JOBCARD
//STEP1 EXEC PGM=CIGINFO
//STEPLIB DD DSN=CIG.PRODUCT.LOADLIB,DISP=SHR
//CIGLOG DD SYSOUT=*