View previous topic :: View next topic
|
Author |
Message |
meetraju2020
New User
Joined: 14 Mar 2021 Posts: 7 Location: USA
|
|
|
|
Hi,
I am getting -927 SQLCODE while initiating IMS transaction. The program compilation is successful.
I have used the control card with ENABLE option both (*) and ENABLE (IMSMPP), both times the compilation and BIND is successful.
But not sure if there could be any other reason for having this -927 error.
FYI-We are using COLLGEN through which the code is generated and compiled. it would be great if some one can suggest a solution.
Thanks and Regards,
Rajkumar Nerella |
|
Back to top |
|
|
Pandora-Box
Global Moderator
Joined: 07 Sep 2006 Posts: 1592 Location: Andromeda Galaxy
|
|
|
|
Have you link-edited things correctly ? |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3076 Location: NYC,USA
|
|
Back to top |
|
|
don.leahy
Active Member
Joined: 06 Jul 2010 Posts: 765 Location: Whitby, ON, Canada
|
|
|
|
If the program is running under IMS, you have to ensure that the IMS/Db2 language interface program DFSLI000 is used. |
|
Back to top |
|
|
meetraju2020
New User
Joined: 14 Mar 2021 Posts: 7 Location: USA
|
|
|
|
After checking the link edit process, I found some warning messages and the link edit output is as shown in the attached document.
I was not able to figure out whether the warning messages 711 and 712 are related to any problem with system modules?
Can any one suggest your understanding.
Thanks and Regards,
Rajkumar Nerella |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10884 Location: italy
|
|
|
|
I feel that it is unreasonable to expect people go over a 6000 lines listing to find out what is going on
the best road is to forcefully ask your support |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3076 Location: NYC,USA
|
|
|
|
meetraju2020, It is suggested to avoid any uploads but to copy paste specific errors using code tags to avoid spacing and other security concerns one may have. Such issues usually handled by DBAs . Did you reach out to them even once as I asked before ? |
|
Back to top |
|
|
meetraju2020
New User
Joined: 14 Mar 2021 Posts: 7 Location: USA
|
|
|
|
I can understand it is Lengthy text, hereby I am pasting the area of warning messages
EW2322I 1220 120 INCLUDE SYSLIB(TIRMAINI)
IEW2322I 1220 121 INCLUDE SYSLIB(DFSLI000)
IEW2480W A711 EXTERNAL SYMBOL DSNWLI OF TYPE LD WAS ALREADY DEFINED AS A SYMBOL OF TYPE LD IN SECTION DSNELI.
IEW2482W A712 THE ORIGINAL DEFINITION WAS IN A MODULE IDENTIFIED BY DDNAME APPLOAD. THE DUPLICATE DEFINITION IS IN
SECTION DFSLI000 IN A MODULE IDENTIFIED BY DDNAME SYSLIB.
IEW2480W A711 EXTERNAL SYMBOL DSNHLI OF TYPE LD WAS ALREADY DEFINED AS A SYMBOL OF TYPE LD IN SECTION DSNELI.
IEW2482W A712 THE ORIGINAL DEFINITION WAS IN A MODULE IDENTIFIED BY DDNAME APPLOAD. THE DUPLICATE DEFINITION IS IN
SECTION DFSLI000 IN A MODULE IDENTIFIED BY DDNAME SYSLIB.
IEW2322I 1220 122 INCLUDE SYSLIB(TIRLILOD)
Hope this will be helpful
Thanks and Regards,
Rajkumar Nerella |
|
Back to top |
|
|
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1204 Location: Dublin, Ireland
|
|
|
|
Quote: |
IEW2480W A711 EXTERNAL SYMBOL DSNWLI OF TYPE LD WAS ALREADY DEFINED AS A SYMBOL OF TYPE LD IN SECTION DSNELI.
IEW2482W A712 THE ORIGINAL DEFINITION WAS IN A MODULE IDENTIFIED BY DDNAME APPLOAD. THE DUPLICATE DEFINITION IS IN
SECTION DFSLI000 IN A MODULE IDENTIFIED BY DDNAME SYSLIB. |
I think the clue is in these messages. You have specified that you want to include DFSLI000 from SYSLIB but the entry-point(s) in that module clash with an already-included module as identified in a module in APPLOAD. It is probable that the module identified by ddname APPLOAD contains a non-IMS language interface module.
Garry |
|
Back to top |
|
|
|