- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: SYSTEM-F-SHRIDMISMAT
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
11-16-2003 09:27 PM
11-16-2003 09:27 PM
I have a VAX7200 running on VMS V6.2.
Customer tried to compile a Cobol program and link in this system but gets these messages.
%DCL-W-ACTIMAGE, error activating image DECW$TRANSPORT_COMMON
-CLI-E-IMGNAME, image file
DSA18:[SYS0.SYSCOMMON.][SYSLIB]DECW$TRANSPORT_COMMON.
EXE;3
-SYSTEM-F-SHRIDMISMAT, ident mismatch with shareable image
Other systems have no problem.
Only difference is that recently, some patches are installed to this system.
Customer can only remember one of the patches is VAXDWMOTMUP01.
If this is the cause, it there any way to resolve this?
Regards,
Ronny
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2003 10:12 PM
11-16-2003 10:12 PM
Re: SYSTEM-F-SHRIDMISMAT
Link using /MAP=FULL, then look into .MAP files: you could discover some clue.
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 01:16 AM
11-17-2003 01:16 AM
Re: SYSTEM-F-SHRIDMISMAT
Just a thought, is the machine rebooted after loading the patches. If not, can the machine be rebooted ?
Best regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 03:02 AM
11-17-2003 03:02 AM
Re: SYSTEM-F-SHRIDMISMAT
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 02:56 PM
11-17-2003 02:56 PM
Re: SYSTEM-F-SHRIDMISMAT
there are two steps here:
1.) Linking the program. This will create the executable with references to the shareable images installed on the system where the link is performed. If you do want to deploy the image on various systems it is a good idea to have the system you link on at the same level as the oldest system the program is supposed to run on.
2.) Running the program, which is where you get the error from. If you have control over the sources, one possible solution is to move the object files to the target system and re-link directly on the box. No compiler license on this system is required for the link.
Greetings, Martin
P.S. What really intrigues me here is the combination of Cobol and Xwindows. I was not aware of Cobol bindings for X11...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 04:41 PM
11-17-2003 04:41 PM
Re: SYSTEM-F-SHRIDMISMAT
I have seen that particular message after I have installed mentioned DWMOTMUP patch notably on systems with MULTINET. And the fix would be then a suitable patch from PSC for MULTINET/TCPware.
_veli
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 04:58 PM
11-17-2003 04:58 PM
Re: SYSTEM-F-SHRIDMISMAT
Yes, the system is running with MULTINET and DECNET IV.
Can you tell more in details how you resolve this?
The image of DECW$TRANSPORT_COMMON.EXE on system with no problem is
Image Identification Information
image name: "DECW$TRANSPORT_COMMON"
image file identification: "DECWINDOWS V5.4"
link date/time: 22-APR-1995 00:10:40.87
linker identification: "05-13"
The image in the system causing this problem is,
Image Identification Information
image name: "DECW$TRANSPORT_COMMON"
image file identification: "DW V6.2-010816"
link date/time: 16-AUG-2001 11:53:20.76
linker identification: "05-05"
Regards,
Ronny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 05:00 PM
11-17-2003 05:00 PM
Solution$file = shift (@ARGV) || die "Must provide an image name";
open (LIS, "ANALYZE/IMAGE/NOINTERACTIVE $file|") || die " Problem with anal/imag
\n";
while (
$id = $1 . $2 if (/global section major id: (.*), minor id(.*)$/);
$match = $1 if (/match control:(.*)$/);
print "$1 $id $match\n" if (/image name: "(.*)"$/);
print "$1 $id $match\n" if (/global section name: "(.*)_\d+"$/);
}
Cheers,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 06:34 PM
11-17-2003 06:34 PM
Re: SYSTEM-F-SHRIDMISMAT
* Copy the objects (and object libraries) to that machine
* Link the application on that machine
This _might_ solve the problem, if you link to different versions of DECW$TRANSPORT_COMMON.EXE (that is: different DECWindows versions...) - since that seems to be the problem.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2007 08:36 PM
07-16-2007 08:36 PM