Message appears in Console Terminal

IBM OS/370, MVS, OS/390, Linux, TPF, VM/CMS, VM/ESA, VSE/ESA, z/VM, z/VSE, z/OS, z/OS.e etc...
rogerb
Posts: 65
Joined: Sat Jul 28, 2018 9:14 pm
Skillset: COBOL
Referer: search in Google

Message appears in Console Terminal

Postby rogerb » Mon Aug 06, 2018 8:22 pm

Good afternoon.
I've been offered the possibility of having access to a mainframe only for learning purposes.
To save power the mainframe is powered down sometimes.
Recently, when the IPL (Initial Program Load) is made, a message appears in Red color in the console terminal.


Code: Select all

*22.50.35 STC00029 *IEF882E CSQ7MSTR CSQ7MSTR IS WAITING FOR A REPLY TO
* IEF238D



I believe that these messages showing in Red color are important messages, and this may be an error, but I don't know what this mean and how to solve this problem.

Thank you,
Roger

Robert Sample
Global moderator
Posts: 3720
Joined: Sat Dec 19, 2009 8:32 pm
Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
Referer: other forum
Location: Dubuque, Iowa, USA

Re: Message appears in Console Terminal

Postby Robert Sample » Mon Aug 06, 2018 8:31 pm

The message means that a previous IEF238D message was displayed on the console (after an IEF244I message). The IEF238D requires a reply since it indicates that the system cannot complete allocation of one (or more) device(s) -- see the message text in the manual for the possible reasons for this. The IEF882E message indicates that no reply has been received. If using SDSF, keying SR on the command line will take you to the reply messages; otherwise, issuing console command D R,L will show you them. The IEF882E will continue to appear until a reply has been made to the IEF238D message.

NicC
Global moderator
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Skillset: JCL, PL/1, Rexx, Utilities and to a lesser extent (i.e. I have programmed using them) COBOL,DB2,IMS
Referer: Google
Location: Pushing up the daisies (almost)

Re: Message appears in Console Terminal

Postby NicC » Mon Aug 06, 2018 8:37 pm

but I don't know what this mean

Google is your friend: both IEF238D and IEF882E.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic

rogerb
Posts: 65
Joined: Sat Jul 28, 2018 9:14 pm
Skillset: COBOL
Referer: search in Google

Re: Message appears in Console Terminal

Postby rogerb » Mon Aug 06, 2018 9:08 pm

Hello,
Thank you for your answers.
I write D R,L in th console terminal and I see the following:

Code: Select all

IEE112I 23.31.36 PENDING REQUESTS    FRAME  1     F      E   SYS=ADCD
 RM=1    IM=0     CEM=3     EM=3     RU=0    IR=0    AMRF            
 ID:R/K     T TIME     JOB ID   MESSAGE TEXT                          
         02 R 22.35.35 STC00029 *02 IEF238D CSQ7MSTR - REPLY DEVICE  
                                NAME OR 'CANCEL'.                    
         10 E 22.35.35 STC00029  IEF878I END OF IEF877E FOR CSQ7MSTR  
                                CSQ7MSTR SYS00010                    
          9 E 22.35.35 STC00029  IEF877E CSQ7MSTR NEEDS 1 UNIT(S)    
                                 FOR CSQ7MSTR SYS00010                
                                 FOR VOLUME PRIVAT-   1              
IEE612I CN=L700     DEVNUM=0700 SYS=ADCD


I've looked in the IBM pages for IEF238D and IEF882E.
Those pages have technical information that is difficult to understand by a newbie like me.

Thank you,
Roger

Robert Sample
Global moderator
Posts: 3720
Joined: Sat Dec 19, 2009 8:32 pm
Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
Referer: other forum
Location: Dubuque, Iowa, USA

Re: Message appears in Console Terminal

Postby Robert Sample » Mon Aug 06, 2018 9:21 pm

The IEF877E message tells you that one unit is needed for CSQ7MSTR job DD name SYS00010. Look at the JCl or the job to determine the characteristics of that DD name and figure out a replacement volume serial / unit for it.

rogerb
Posts: 65
Joined: Sat Jul 28, 2018 9:14 pm
Skillset: COBOL
Referer: search in Google

Re: Message appears in Console Terminal

Postby rogerb » Mon Aug 06, 2018 9:49 pm

I typed TSO SDSF. I typed ST and the I searched 'S CSQ7MSTR'.
I opened the job CSQ7MSTR and I showed the JESYSMSG.
I see the following:

Code: Select all

IEF506I CSQ7MSTR CSQ7MSTR SYS00009 - NO STORAGE VOLUMES. 'VOLUME=PRIVATE' ASSUMED

IKJ56221I DATA SET CSQARC1.CSQ7.B0000021 NOT ALLOCATED, VOLUME NOT AVAILABLE+

IKJ56221I VOLUME  NECESSARY TO SATISFY YOUR REQUEST NOT ON SYSTEM, AND CANNOT BE MOUNTED


Thank you,
Roger

Robert Sample
Global moderator
Posts: 3720
Joined: Sat Dec 19, 2009 8:32 pm
Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
Referer: other forum
Location: Dubuque, Iowa, USA

Re: Message appears in Console Terminal

Postby Robert Sample » Mon Aug 06, 2018 9:59 pm

The job needs a different volume for the data set. Unless you give it one, you'll need to reply to the message with CANCEL to kill the CSQ7MSTR job.

rogerb
Posts: 65
Joined: Sat Jul 28, 2018 9:14 pm
Skillset: COBOL
Referer: search in Google

Re: Message appears in Console Terminal

Postby rogerb » Mon Aug 06, 2018 10:24 pm

Thank you for your answers.
When I search for a certain dataset, by using option 3.4 Dslist in ISPF, there are at least 2 volumes.
The volume ZARES1 has got System Librairies like SYS1.PARMLIB.
The volume ZASYS1 has got my Private JCL Librairies, Maps/Mapsets and COBOL programs.

Which one should I use or should I CANCEL the job ?
If I cancel the job I will afect the system or the performance of the mainframe ?

Thank you,
Roger

enrico-sorichetti
Global moderator
Posts: 3006
Joined: Fri Apr 18, 2008 11:25 pm
Skillset: tso,rexx,assembler,pl/i,storage,mvs,os/390,z/os,
Referer: www.ibmmainframes.com

Re: Message appears in Console Terminal

Postby enrico-sorichetti » Mon Aug 06, 2018 10:46 pm

I've been offered the possibility of having access to a mainframe only for learning purposes.
To save power the mainframe is powered down sometimes.

horse manure ...

how much power do You expect to save by turning off Your emulated mainframe ??
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort

rogerb
Posts: 65
Joined: Sat Jul 28, 2018 9:14 pm
Skillset: COBOL
Referer: search in Google

Re: Message appears in Console Terminal

Postby rogerb » Mon Aug 06, 2018 11:00 pm

Good afternoon Mr. Enrico-sorichetti.
I mentioned that information because I was trying to provide all the relevant information about this situation.
I was trying to contextualize the problem.
The fact is that I have a problem and I'm trying to solve it and I asked for help.

Thank you,
Roger


  • Similar Topics
    Replies
    Views
    Last post