| Author | Message | 
		
		  | diptipuja | 
			  
				|  Posted: Mon Aug 08, 2005 5:45 am    Post subject: Module 'MQCONN' not found |   |  | 
		
		  | Newbie
 
 
 Joined: 08 Aug 2005Posts: 4
 
 
 | 
			  
				| Hi, 
 When I try execute  the JCL, it throws the error ABENDED 8806 - "The module MQCONN was not found"
 
 How should I include the module ?
 
 So, could anyone please help in resolving it.
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | kevinf2349 | 
			  
				|  Posted: Mon Aug 08, 2005 5:59 am    Post subject: |   |  | 
		
		  |  Grand Master
 
 
 Joined: 28 Feb 2003Posts: 1311
 Location: USA
 
 | 
			  
				| You mean S806 I assume......if so then you need to include the library that has MQCONN into the STEPLIB concatenation (I believe it is in hlq.SCSQLOAD) 
 btw....don't double post, it doesn't get you helped any quicker.
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | diptipuja | 
			  
				|  Posted: Mon Aug 08, 2005 9:03 pm    Post subject: |   |  | 
		
		  | Newbie
 
 
 Joined: 08 Aug 2005Posts: 4
 
 
 | 
			  
				| Hi Kevin, 
 Ya, the error is same as you have mentioned but the library is not there on my mainframe.
 
 One is there as MQM.SCSQLOAD
 
 Could you please elaborate on the same ??
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | Mr Butcher | 
			  
				|  Posted: Mon Aug 08, 2005 10:17 pm    Post subject: |   |  | 
		
		  |  Padawan
 
 
 Joined: 23 May 2005Posts: 1716
 
 
 | 
			  
				| when kevinf2349 wrote "hlq" he ment "high level qualifier", which depends on the naming standards of your shop. yes, use the scsqload you found.
 and ask a collegue that is familiar with the mainframe to assist you.
 _________________
 Regards, Butcher
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | diptipuja | 
			  
				|  Posted: Tue Aug 09, 2005 1:42 am    Post subject: |   |  | 
		
		  | Newbie
 
 
 Joined: 08 Aug 2005Posts: 4
 
 
 | 
			  
				| I am still not able to run as the same error is coming. Which all libraries to include ?? Please elaborate |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | Mr Butcher | 
			  
				|  Posted: Tue Aug 09, 2005 3:03 am    Post subject: |   |  | 
		
		  |  Padawan
 
 
 Joined: 23 May 2005Posts: 1716
 
 
 | 
			  
				| please post your jcl _________________
 Regards, Butcher
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | haqshaik | 
			  
				|  Posted: Tue Sep 20, 2005 8:26 am    Post subject: |   |  | 
		
		  | Novice
 
 
 Joined: 08 Sep 2005Posts: 13
 
 
 | 
			  
				| Hi, Try searching the system Libraires. Most of the shops it will start with SYS and the last qualifier SCSQLOAD. Look for this liabary. its not a standard and its a wild guess. If you still did not get, Ask your MQ administrator for the loadlibraries. Where are your copy books like CMQTML or CMQMV are located.  Pick the hlq and the load libraires should also start with the same hlq.
 
 Hope this will be helpful..
 
 Reagrds,
 Salauddin
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | javagate | 
			  
				|  Posted: Thu Sep 22, 2005 5:36 am    Post subject: |   |  | 
		
		  |  Disciple
 
 
 Joined: 15 Nov 2004Posts: 159
 
 
 | 
			  
				| Btw... Did you include  the CSQBSUTB at linkedit time? i.e.. INCLUDE SYSLIB(CSQBSTUB)
 The stubs has the mf api modules. Take a look at the mf stubs.
 _________________
 WebSphere Application Server 7.0 z/OS &
 MQ 6.0.  I work with WebSphere in the real world not in some IBM lab.
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | hopsala | 
			  
				|  Posted: Thu Sep 22, 2005 7:58 am    Post subject: |   |  | 
		
		  |  Guardian
 
 
 Joined: 24 Sep 2004Posts: 960
 
 
 | 
			  
				| I think the answer here is indeed what javagate suggested (CSQBSTUB), but regardless, my guess is that you didn't install MQ properly; check out the WMQ program directory for z/OS for further info - You may have missed a few steps, such as putting some of the PDSs to linklist or LPA, possibly you didn't refresh your LPA before loading MQ, or something similar... |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  | MQ_Matt | 
			  
				|  Posted: Thu Sep 22, 2005 11:50 am    Post subject: |   |  | 
		
		  | Novice
 
 
 Joined: 14 Sep 2005Posts: 10
 Location: Toronto
 
 | 
			  
				| If what you are seeing is something like 
 
 
   
	| Code: |  
	| CEE3501S The module MQCONN   was not found. From compile unit xxxxxxxx at entry point xxxxxxxx at compile unit offset +00002C84
 at address 11B03C24.
 |  
 then that would indicate to me that you are trying to dynamically call MQCONN. Is that your intent?
 
 If not, make sure you are using the NODYNAM compiler option at compile time, and ensure that you are linking in CSQBSTUB. The link card might look like this:
 
 
 
   
	| Code: |  
	| INCLUDE SCSQMOD(CSQBSTUB) MODE AMODE(31),RMODE(ANY)
 NAME XXXXXXXX(R)
 |  
 And as mentioned, your JCL should have hlq.SCSQLOAD as one of the steplibs.
 |  | 
		
		  | Back to top |  | 
		
		  |  | 
		
		  |  |