Setting up an archive post-processing job1
The symbols in Symbols used in archive post-processing jobs are supported in the optional archive post-processing job. The product replaces these symbols in the JCL with the appropriate values when the job is submitted for execution.
Symbol | Substituted value |
---|---|
$DOMSSN | Current DBC subsystem ID |
$DOMDSN | Current trace data set name |
$DOMDATE | Current date in the format Dyyddd, where yy is the year (00–99) and ddd is the day of the year (000–365) |
$DOMTIME | Current time in the format TMhhmmss, where hh is hours (00–23), mm is minutes (00–59), and ss is seconds (00–59) |
$DOMLSET | LOGSET name |
$DOMPLX | Current DOMPLEX name (specified in the DOMPLEX option set) |
$DOMARC | Archive data set name or $NULLFILE if no archive is generated |
$DOMARCN | Archive data set name that was generated even if no archive is produced |
You can substitute substrings of these symbols, using the substring function:
The syntax of the substring function is:
- Thess value represents the starting position.
- Thell value represents the length.
Thevvvvvvv value is a symbol name.
For example, to represent the first 10 characters of $DOMDSN :
$SUBSTR(1,10,$DOMDSN)