SNAX/XF LU Network Services Manual
Adding an Application and Terminal to a Second System
Application Example
097841 Tandem Computers Incorporated 3–11
Creating a Command File
for SNAXUTL
First, an ESS table is created for \SYS2. The command file contains only one logon
record, because the single terminal being configured on this system will have access
only to the Inventory process. Note that SCF has been used to specify that the terminal
be automatically logged on to this one process; hence, a HELP menu is not necessary.
Note also that the necessary Pathway parameters have been included in the
CONCDATA field.
BEGIN
SELECTFILE $SYSTEM.SNAX.ESSTAB2, TYPE ESS
ALLOCATE 10
ADD ESSCMD INVENTORY, &
CMDTYPE LOGON-CHAR, &
PLUNAME #CREATE, &
CONCDATA ("PATHWAY NAME $PATHY ,", &
"PROGRAM INVENTORY")
ADD ESSCMD LOGOFF, &
CMDTYPE LOGOFF
END
Next, the SET table for \SYS2 is built. This table includes a record for ESS2. Because it
is a new table that is being built, the command block includes an ALLOCATE
command.
BEGIN
SELECTFILE $SYSTEM.SNAX.SNXSET2, TYPE SET
ALLOCATE 10
ADD SETESS ESS2, &
FILENAME $SYSTEM.SNAX.ESSTAB2
END
This SET table is specified as the active one through SCF rather than through SYSGEN;
therefore the file does not need to reside on the volume and subvolume from which
SNAX/XF was loaded.