- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- error messages in hexadecimal
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
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
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-2008 10:53 AM
тАО07-11-2008 10:53 AM
error messages in hexadecimal
Ima a novice VMS COBOL programmer and i need some help in analyzing an hexadecimal error. I have a cobol program submitted in batch and it failed for some reason. When i looked at the log for teh cause , the error is in hexadeimal format. Can somebody please help me how to trace back from the hexadecimal format of error messages. Any help in this regard help would be greatly appreciated.
Thanks
Sunny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 11:13 AM
тАО07-11-2008 11:13 AM
Re: error messages in hexadecimal
Was this message something like
%xxxx-x-NOMSG, Message number hhhhhhhhh
?
In that case the attached command file might be useful. Copy it to your VMS system as FINDMESSAGE.COM, and then
$@findmessage %xhhhhhhhh
where hhhhhhhh is the hexadecimal number from your error message. The "%x" is important.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 11:33 AM
тАО07-11-2008 11:33 AM
Re: error messages in hexadecimal
what you're talking about? "error is in
hexadecimal format" doesn't tell me much
(except that you know how to spell
hexadecimal, which is nice, but not very
helpful by itself).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 11:59 AM
тАО07-11-2008 11:59 AM
Re: error messages in hexadecimal
$ exit %b70
%SYSTEM-W-FISH, my hovercraft is full of eels
You'll see the text of the error message associated with that. You can then get assistance with that message (in many circumstances) by issuing the command:
$ help/message fish
HTH,
Aaron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 12:14 PM
тАО07-11-2008 12:14 PM
Re: error messages in hexadecimal
Thank you so much for all your replies. I didnt put the exact error message or the hex number as it was an actual production error and iam not sure if i can put it in a forum like this. But unfortunately iam not able to replicate the same error in the development environment and my program works fine in the development environment.
Looks like Brown's COM procedure called findmessage works . Let me try again. I did try with help/message but it didnt help me.
Thanks a lot Brown for your script. I will try that in my development environment again. Thank you .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 12:26 PM
тАО07-11-2008 12:26 PM
Re: error messages in hexadecimal
That's a new one... in 30 years of support.
Are you afraid to shame someone, having to admit that the application is not perfect?
Errors happen!
When they do, and you need help, then all details are critical. The exact number, and/or a copy&paste of the exact text. Do not re-type, just copy & paste even if that is more work.
>> I did try with help/message
That works for the bulk of the system provided standard errors, for which a simple $EXIT %xXXXXX, or WRITE SYS$OUTPUT F$MESSAGE (%xXXXX) returns the basic text.
For those you do typically not need Rbrowns script which brute-forces through all message files it can find. Not that there is anything wrong with that..
good luck!
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2008 12:52 PM
тАО07-11-2008 12:52 PM
Re: error messages in hexadecimal
Maybe new for you, Hein. Not new for me. I've received (far) weirder over the years.
Ok, here, we can start with %hex 00000001, and guess our way up through the address space.
Or you can post the traceback.
Or you can start with the following:
http://64.223.189.234/node/800
and work your way back to the trigger yourself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2008 05:12 AM
тАО07-12-2008 05:12 AM
Re: error messages in hexadecimal
really don't want answers. They're more fun
than the ones in the HP-UX forum which say,
"I need a shell script which does
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2008 05:44 AM
тАО07-12-2008 05:44 AM
Re: error messages in hexadecimal
I just noticed that HP isn't keeping its own message constants entirely straight here; the MMI$ messages do not follow the expected message format nor message allocation for use with registered ($) message values. (Ooops)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-13-2008 02:14 PM
тАО07-13-2008 02:14 PM
Re: error messages in hexadecimal
Note that help/message with no parameters will give you help about the condition in $status. For example:
$ directory nofile
%DIRECT-W-NOFILES, no files found
$ help/message
FNF, file not found
Facility: RMS, OpenVMS Record Management Services
Explanation: The specified file does not exist.
User Action: Check the file specification and verify that the device, directory, file name, and file type are all specified correctly. If a logical name is specified, verify the current equivalence assigned to the logical name. If the equivalence is correct, verify that the correct volume is mounted on the specified device and that the file was not inadvertently deleted.
Given a hex condition code, use the sequence:
$ EXIT %xnnnnnn
$ HELP/MESSAGE