Top
Systemwalker Operation Manager  Reference Guide
FUJITSU Software

18.3.1 Job Net Variable Information Files

Information about variables used during job execution and the result of importing the job net variables are stored in the job net variable information files. There are two types of job net variable information files:

File name

[Windows]

<project name>_<job net name>_cccccccccccccccc.tvr
<project name>_<job net name>_cccccccccccccccc.tvh

* is a string

[UNIX]

<project name>_<job net name>_nn.tvr
<project name>_<job net name>_nn.tvh

* nn is a number

Description

Reference this file to check job net variables when, for instance, a job net or job has ended abnormally. You can check the following information:

File Location

Windows

<Systemwalker installation directory>\MpWalker.JM\mpjobsch\jobdb\jobschtvr

If using subsystem 1 to 9 in multi-subsystem operations:
<Systemwalker installation directory>\MpWalker.JM\mpjobsch\jobdbn\jobschtvr
* Where "n" is the subsystem number

Solaris
Linux

/var/opt/FJSVJOBSC/jobschtvr

If using subsystem 1 to 9 in multi-subsystem operations:
/var/opt/FJSVJOBSC/JOBDBn/jobschtvr
* Where "n" is the subsystem number

HP-UX

/opt/FHPJOBSCH/db/jobschtvr

If using subsystem 1 to 9 in multi-subsystem operations:
/opt/FHPJOBSCH/db/JOBDBn/jobschtvr
* Where "n" is the subsystem number

AIX

/usr/FAIXJOBSC/db/jobschtvr

If using subsystem 1 to 9 in multi-subsystem operations:
/usr/FAIXJOBSC/db/JOBDBn/jobschtvr
* Where "n" is the subsystem number

File format

These are plain text files, and can be viewed in a text editor.

.trv file

This file contains the list of job net variables in effect and their values when the job net ended.

If the job net is layered, the .tvr file for the job net in the 1st layer will contain the list of variables in effect and their values when a child job net in the 2nd layer or lower ended.

[TRANSFER_VARIABLE]        (1)
JOB.NAME=VALUE             (2)
JOB.A=B                    (2)
(1) Start of section containing the variables in effect when the job net ended. This is a fixed string.
(2)  Variable name and its value when the job net ended, using the format "<variable name>=<value>".

.tvh file

This file contains the list of the variables imported by the jobs in the job net and their values, and the variables in effect and their value during job execution.

[VARIABLE_OUTPUT1]         (1)
JOB.NAME=VALUE             (2)
JOB.A=B                    (2)
[VARIABLE_INPUT2]          (3)
JOB.A=B                    (4)
[VARIABLE_OUTPUT2]         (1)
JOB.NAME=VALUE             (2)
JOB.A=C                    (2)
(1) Start of section containing the variables that a job imported from the job output information.
   The string "VARIABLE_OUTPUT" is fixed. The number following this fixed string is managed by the Jobscheduler.
   When the job is restarted, the section for the previous startup (or restart) is deleted
   and a new section is appended.
(2) Variable name and its value imported by the job from its job output information, using the format "<variable name>=<value>".
(3) Start of section containing the variables used by a job during job execution.
   The string "VARIABLE_INPUT" is fixed. The number following this fixed string is managed by the Jobscheduler.
   When the job is restarted, the section for the previous startup (or restart) is deleted
   and a new section is appended.
(4) Variable name and its value during job execution, using the format "<variable name>=<value>".

Notes

Examples

.tvr file

[TRANSFER_VARIABLE]
JOB.CF_FILENAME=/tmp/project.txt
JOB.CF_CHKTYPE=fwait
JOB.CF_FILESIZE=1024
JOB.CF_FILEYEAR=2014
JOB.CF_FILEDATE=0123
JOB.CF_FILETIME=1234

.tvh file

[VARIABLE_OUTPUT1]
JOB.CF_FILENAME=/tmp/project.txt
JOB.CF_CHKTYPE=fwait
JOB.CF_FILESIZE=1024
JOB.CF_FILEYEAR=2014
JOB.CF_FILEDATE=0123
JOB.CF_FILETIME=1234
[VARIABLE_INPUT2]
JOB.CF_FILENAME=/tmp/project.txt
JOB.CF_FILESIZE=1024