- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- F$GETQUI Playing Up
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 01:26 AM
07-11-2005 01:26 AM
Please tell me why can't I use this item code???
$START:
$ !
$MONI_QUE:
$ QUE = F$GETQUI("")
$ QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","FTG_ITOPS_PDF1","WILDCARD")
$ !
$MONI_QUE_LOOP:
$ ENTRY_NO = F$GETQUI("DISPLAY_JOB","ENTRY_NUMBER")
$ SH SYM ENTRY_NO
ENTRY_NO = 4993 Hex = 00001381 Octal = 00000011601
$ !
$ JOB_FILE = F$GETQUI("DISPLAY_JOB","FILE_SPECIFICATION",,"FREEZE_CONTEXT")
%JBC-F-INVITMCOD, invalid item code or option code
Cheers, Rob.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 02:04 AM
07-11-2005 02:04 AM
SolutionFor the F$GETQUI specifications you must look to the SYS$GQTQUI system service:
http://h71000.www7.hp.com/doc/82FINAL/4527/4527pro_060.html#index_x_618
If you look at the QUI$_DISPLAY_JOB function, you will see that has no QUI$_FILE_SPECIFICATION item. This is an item for QUI$_DISPLAY_FILE function. To get the job file name use:
JOB_FILE = F$GETQUI("DISPLAY_FILE","FILE_SPECIFICATION")
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 02:06 AM
07-11-2005 02:06 AM
Re: F$GETQUI Playing Up
I mean SYS$GETQUI system service :)
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 02:06 AM
07-11-2005 02:06 AM
Re: F$GETQUI Playing Up
I think within the job context you have to do a DISPLAY_FILE loop for each possible file in the job (often just one file).
See
http://h71000.www7.hp.com/doc/82FINAL/4527/4527pro_060.html#jun_304
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 02:10 AM
07-11-2005 02:10 AM
Re: F$GETQUI Playing Up
I'd tried substituting with DISPLAY_ENTRY, but didn't spot DISPLAY_FILE.
I think I might try and get the help text updated so you can see what item codes match which calls.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 02:22 AM
07-11-2005 02:22 AM