CA-GSS Statements and Commands › Service Routines › $SRV_IMOD_INFO
$SRV_IMOD_INFO
The $SRV_IMOD_INFO routine returns information about a specific IMOD.
Syntax
CALL $SRV_IMOD_INFO imod
Parameters
- imod
-
The name of the IMOD to be reported on.
Returned Data
Data is returned in the returned string. The first character in the string is the delimiter character. This character is used to separate the returned fields:
- The IMOD name.
- Reserved.
- Reserved.
- Use count. The number of IMOD tasks currently executing this copy of the IMOD.
- User ID of the TSO user or the console ID from which this IMOD was last loaded into the system.
- Date of last modification. The format is yy/dd/mm.
Note: Simply recompiling an IMOD does not constitute a modification.
- Compiler version that was last used.
- Reserved.
- The ISET name from which the IMOD was last loaded.
- Data set name from which the IMOD was last loaded.
- Internal if the IMOD is an integrated part of ISERVE; null otherwise.
- Callable if the IMOD can be called as a subroutine; null otherwise.
- Active if the IMOD is executable; null otherwise.
- Total expended CPU time by this IMOD after it was last loaded.
Example
call $srv_imod_info 'test_user'
parse var result 1 d +1 name (d) . (d) . (d) count (d) id (d) ,
cdate (d) version (d) . (d) iset (d) dsname (d) int (d) ,
callable (d) act (d) cputime (d) .
Copyright © 2014 CA Technologies.
All rights reserved.
|
|