Re: Trying to find documentation for LE reason code

2020-07-29 Thread Gord Tomlin

On 2020-07-29 19:15, Charles Mills wrote:

The error is from running the EXEC; it is not documentation of any UNIX error.


Correct. The exec is in SYS1.SBPXEXEC(BPXMTEXT).

--

Regards, Gord Tomlin
Action Software International
(a division of Mazda Computer Corporation)
Tel: (905) 470-7113, Fax: (905) 470-6507
Support: https://actionsoftware.com/support/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Charles Mills
Found the BPXMTEXT problem. An EXEC library in the concatenation is VB. The 
error is from running the EXEC; it is not documentation of any UNIX error.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Charles Mills
Sent: Wednesday, July 29, 2020 2:49 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Trying to find documentation for LE reason code

Duh. I knew that. Thank you.

Interesting thing. It does not work for me. (IBM Dallas)

bpxmtext 0D070201

yields

IRX0435E An invalid record was found during exec load. This is an internal 
error.

Which is totally irrelevant. There is no EXEC in this picture.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Sri h Kolusu
> There is a lot of this and that on the Web, but I would like to read the
> actual documentation for that reason code. Where do I find it? I look up
the
> message in LE M&C and find


Download the manual "z/OS UNIX System Services Messages and Codes" (3rd in
the list ) from here

https://www-01.ibm.com/servers/resourcelink/svc00100.nsf/pages/zOSV2R3UnixSystemServicesPublications?OpenDocument

See Chapter 15 for return code

"return code was 000156"

Decimal Value: 156
Hex Value: 9C
Return Code: EMVSINITIAL
Description : Process Initialization error

See Chapter 16 for reason codes

Reason codes are sometimes referred to as errnojrs or as errno2 values.

The reason code is made up of 4 bytes in the following format:

 rrr

•  is a halfword reason code qualifier. Generally this is used to
identify the issuing module and represents a module ID.

•  is the halfword reason code that is described in this documentation.
Only this part of the reason code is intended as an interface for
programmers.


 = 0201

0201 JRAlreadySigSetUp

BPX1MSS found the process already set up for signals.
Action: Only one task can be set up for signals at any one time. Issue the
signal unset (BPX1MSD) service on the task that did the last setup and then
reissue this service.


Thanks,
Kolusu

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Don Poitras
Are you perhaps running some program via /bin/tso? That ends up calling 
mvssigsetup. If 
so, try changing to /bin/tsocmd. At least, that's the error we got and how we 
got around
it, six years ago.


In article  you wrote:
> Hi Charles, 

> Not sure why, but the reason code looked very familiar to me. Googling 
> returned this link... 
> https://www.ibm.com/support/pages/cee1000s-4093-90-cee5101c-bpx1mss-failed-when-using-posix
>  

> HTH,
> Mike 

> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On 
> Behalf Of Charles Mills
> Sent: Wednesday, July 29, 2020 4:35 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Trying to find documentation for LE reason code

> Caution! This message was sent from outside your organization.

> I am getting the following error when starting a UNIX program:

> CEE5101C During initialization, the callable service BPX1MSS failed. The 
> system return code was 000156, the reason code was 0D070201 . The 
> application will be terminated.


> There is a lot of this and that on the Web, but I would like to read the 
> actual documentation for that reason code. Where do I find it? I look up the 
> message in LE M&C and find

> Programmer response: See z/OS UNIX System Services Programming: Assembler 
> Callable Services Reference for the appropriate action to take for this 
> return code and reason code. Consult with your z/OS UNIX System Services 
> (z/OS UNIX) support personnel if necessary. One possibility is the 
> application was not authorized to use z/OS UNIX. If this is true, contact 
> your system administrator to have the ID registered with z/OS UNIX to use 
> these services.
> Symbolic Feedback Code: CEE4VD

> Nice of them to refer you to a 1300-page book with no clue as to which 
> chapter to look at, huh? Anyway I search the referenced book on CEE5101C, on 
> 0D070201, and on CEE4VD and get no hits. I didn't find anything under BPX1MSS.

> Anyone have any clues? This seems more difficult than it ought to be.

> (Yes, the userid *does* have an OMVS segment.)

> Charles

-- 
Don Poitras - SAS Development  -  SAS Institute Inc. - SAS Campus Drive
sas...@sas.com   (919) 531-5637Cary, NC 27513

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Charles Mills
Thanks. That was part of the this and that which I found on the Web. No CICS
in my picture.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
Behalf Of Mike Hochee
Sent: Wednesday, July 29, 2020 1:56 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Trying to find documentation for LE reason code

Hi Charles, 

Not sure why, but the reason code looked very familiar to me. Googling
returned this link...
https://www.ibm.com/support/pages/cee1000s-4093-90-cee5101c-bpx1mss-failed-w
hen-using-posix 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Charles Mills
Duh. I knew that. Thank you.

Interesting thing. It does not work for me. (IBM Dallas)

bpxmtext 0D070201

yields

IRX0435E An invalid record was found during exec load. This is an internal 
error.

Which is totally irrelevant. There is no EXEC in this picture.

I will try to track down the signal thing. That makes some sense.

Thanks again,

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Gord Tomlin
Sent: Wednesday, July 29, 2020 1:47 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Trying to find documentation for LE reason code

On 2020-07-29 16:35, Charles Mills wrote:
> I am getting the following error when starting a UNIX program:
> 
> CEE5101C During initialization, the callable service BPX1MSS failed. The
> system return code was 000156, the reason code was 0D070201 . The
> application will be terminated.
> 
> 
> There is a lot of this and that on the Web, but I would like to read the
> actual documentation for that reason code. Where do I find it? I look up the
> message in LE M&C and find
> 
> Programmer response: See z/OS UNIX System Services Programming: Assembler
> Callable Services Reference for the
> appropriate action to take for this return code and reason code. Consult
> with your z/OS UNIX System Services
> (z/OS UNIX) support personnel if necessary. One possibility is the
> application was not authorized to use z/OS
> UNIX. If this is true, contact your system administrator to have the ID
> registered with z/OS UNIX to use these
> services.
> Symbolic Feedback Code: CEE4VD
> 
> Nice of them to refer you to a 1300-page book with no clue as to which
> chapter to look at, huh? Anyway I search the referenced book on CEE5101C, on
> 0D070201, and on CEE4VD and get no hits. I didn't find anything under
> BPX1MSS.
> 
> Anyone have any clues? This seems more difficult than it ought to be.
> 
> (Yes, the userid*does*  have an OMVS segment.)
> 
> Charles

bpxmtext 0D070201

 .  =>
BPXNSMSS 01/31/17
JRAlreadySigSetUp: BPX1MSS found the process already set up for signals

Action: Only one task can be set up for signals at any one time.  Issue the
signal unset (BPX1MSD) service on the task that did the last setup and then
reissue this service.
***

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Mike Hochee
Hi Charles, 

Not sure why, but the reason code looked very familiar to me. Googling returned 
this link... 
https://www.ibm.com/support/pages/cee1000s-4093-90-cee5101c-bpx1mss-failed-when-using-posix
 

HTH,
Mike 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Charles Mills
Sent: Wednesday, July 29, 2020 4:35 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Trying to find documentation for LE reason code

Caution! This message was sent from outside your organization.

I am getting the following error when starting a UNIX program:

CEE5101C During initialization, the callable service BPX1MSS failed. The system 
return code was 000156, the reason code was 0D070201 . The application will 
be terminated.


There is a lot of this and that on the Web, but I would like to read the actual 
documentation for that reason code. Where do I find it? I look up the message 
in LE M&C and find

Programmer response: See z/OS UNIX System Services Programming: Assembler 
Callable Services Reference for the appropriate action to take for this return 
code and reason code. Consult with your z/OS UNIX System Services (z/OS UNIX) 
support personnel if necessary. One possibility is the application was not 
authorized to use z/OS UNIX. If this is true, contact your system administrator 
to have the ID registered with z/OS UNIX to use these services.
Symbolic Feedback Code: CEE4VD

Nice of them to refer you to a 1300-page book with no clue as to which chapter 
to look at, huh? Anyway I search the referenced book on CEE5101C, on 0D070201, 
and on CEE4VD and get no hits. I didn't find anything under BPX1MSS.

Anyone have any clues? This seems more difficult than it ought to be.

(Yes, the userid *does* have an OMVS segment.)

Charles

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Gibney, Dave
Also, there are chapters titled something like Reason Code amd Return codes
These code are often actually two halfwords search the book for the lower half

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Gord Tomlin
> Sent: Wednesday, July 29, 2020 1:47 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Trying to find documentation for LE reason code
> 
> On 2020-07-29 16:35, Charles Mills wrote:
> > I am getting the following error when starting a UNIX program:
> >
> > CEE5101C During initialization, the callable service BPX1MSS failed. The
> > system return code was 000156, the reason code was 0D070201 . The
> > application will be terminated.
> >
> >
> > There is a lot of this and that on the Web, but I would like to read the
> > actual documentation for that reason code. Where do I find it? I look up the
> > message in LE M&C and find
> >
> > Programmer response: See z/OS UNIX System Services Programming:
> Assembler
> > Callable Services Reference for the
> > appropriate action to take for this return code and reason code. Consult
> > with your z/OS UNIX System Services
> > (z/OS UNIX) support personnel if necessary. One possibility is the
> > application was not authorized to use z/OS
> > UNIX. If this is true, contact your system administrator to have the ID
> > registered with z/OS UNIX to use these
> > services.
> > Symbolic Feedback Code: CEE4VD
> >
> > Nice of them to refer you to a 1300-page book with no clue as to which
> > chapter to look at, huh? Anyway I search the referenced book on
> CEE5101C, on
> > 0D070201, and on CEE4VD and get no hits. I didn't find anything under
> > BPX1MSS.
> >
> > Anyone have any clues? This seems more difficult than it ought to be.
> >
> > (Yes, the userid*does*  have an OMVS segment.)
> >
> > Charles
> 
> bpxmtext 0D070201
> 
>  .  =>
> BPXNSMSS 01/31/17
> JRAlreadySigSetUp: BPX1MSS found the process already set up for signals
> 
> Action: Only one task can be set up for signals at any one time.  Issue the
> signal unset (BPX1MSD) service on the task that did the last setup and then
> reissue this service.
> ***
> 
> --
> 
> Regards, Gord Tomlin
> Action Software International
> (a division of Mazda Computer Corporation)
> Tel: (905) 470-7113, Fax: (905) 470-6507
> Support:
> https://urldefense.com/v3/__https://actionsoftware.com/support/__;!!Jm
> PEgBY0HMszNaDT!56FkfHt4n1FMBF2v5hALqOQFoeyDmlPblg6ePlHBW4DUr8
> HZNLNkeMsZTPX4Wg$
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Walker, Mark
That's a USS reason code; you can find the meaning of it by issuing "tso 
bpxmtext" followed by the reason code.

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Charles Mills
Sent: Wednesday, July 29, 2020 4:35 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Trying to find documentation for LE reason code

I am getting the following error when starting a UNIX program:

CEE5101C During initialization, the callable service BPX1MSS failed. The system 
return code was 000156, the reason code was 0D070201 . The application will 
be terminated.


There is a lot of this and that on the Web, but I would like to read the actual 
documentation for that reason code. Where do I find it? I look up the message 
in LE M&C and find

Programmer response: See z/OS UNIX System Services Programming: Assembler 
Callable Services Reference for the appropriate action to take for this return 
code and reason code. Consult with your z/OS UNIX System Services (z/OS UNIX) 
support personnel if necessary. One possibility is the application was not 
authorized to use z/OS UNIX. If this is true, contact your system administrator 
to have the ID registered with z/OS UNIX to use these services.
Symbolic Feedback Code: CEE4VD

Nice of them to refer you to a 1300-page book with no clue as to which chapter 
to look at, huh? Anyway I search the referenced book on CEE5101C, on 0D070201, 
and on CEE4VD and get no hits. I didn't find anything under BPX1MSS.

Anyone have any clues? This seems more difficult than it ought to be.

(Yes, the userid *does* have an OMVS segment.)

Charles

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN
The contents of this e-mail are intended for the named addressee only. It 
contains information that may be confidential. Unless you are the named 
addressee or an authorized designee, you may not copy or use it, or disclose it 
to anyone else. If you received it in error please notify us immediately and 
then destroy it

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Trying to find documentation for LE reason code

2020-07-29 Thread Gord Tomlin

On 2020-07-29 16:35, Charles Mills wrote:

I am getting the following error when starting a UNIX program:

CEE5101C During initialization, the callable service BPX1MSS failed. The
system return code was 000156, the reason code was 0D070201 . The
application will be terminated.


There is a lot of this and that on the Web, but I would like to read the
actual documentation for that reason code. Where do I find it? I look up the
message in LE M&C and find

Programmer response: See z/OS UNIX System Services Programming: Assembler
Callable Services Reference for the
appropriate action to take for this return code and reason code. Consult
with your z/OS UNIX System Services
(z/OS UNIX) support personnel if necessary. One possibility is the
application was not authorized to use z/OS
UNIX. If this is true, contact your system administrator to have the ID
registered with z/OS UNIX to use these
services.
Symbolic Feedback Code: CEE4VD

Nice of them to refer you to a 1300-page book with no clue as to which
chapter to look at, huh? Anyway I search the referenced book on CEE5101C, on
0D070201, and on CEE4VD and get no hits. I didn't find anything under
BPX1MSS.

Anyone have any clues? This seems more difficult than it ought to be.

(Yes, the userid*does*  have an OMVS segment.)

Charles


bpxmtext 0D070201

.  =>
BPXNSMSS 01/31/17
JRAlreadySigSetUp: BPX1MSS found the process already set up for signals

Action: Only one task can be set up for signals at any one time.  Issue the
signal unset (BPX1MSD) service on the task that did the last setup and then
reissue this service.
***

--

Regards, Gord Tomlin
Action Software International
(a division of Mazda Computer Corporation)
Tel: (905) 470-7113, Fax: (905) 470-6507
Support: https://actionsoftware.com/support/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Trying to find documentation for LE reason code

2020-07-29 Thread Charles Mills
I am getting the following error when starting a UNIX program:

CEE5101C During initialization, the callable service BPX1MSS failed. The
system return code was 000156, the reason code was 0D070201 . The
application will be terminated.


There is a lot of this and that on the Web, but I would like to read the
actual documentation for that reason code. Where do I find it? I look up the
message in LE M&C and find

Programmer response: See z/OS UNIX System Services Programming: Assembler
Callable Services Reference for the
appropriate action to take for this return code and reason code. Consult
with your z/OS UNIX System Services
(z/OS UNIX) support personnel if necessary. One possibility is the
application was not authorized to use z/OS
UNIX. If this is true, contact your system administrator to have the ID
registered with z/OS UNIX to use these
services.
Symbolic Feedback Code: CEE4VD

Nice of them to refer you to a 1300-page book with no clue as to which
chapter to look at, huh? Anyway I search the referenced book on CEE5101C, on
0D070201, and on CEE4VD and get no hits. I didn't find anything under
BPX1MSS.

Anyone have any clues? This seems more difficult than it ought to be.

(Yes, the userid *does* have an OMVS segment.)

Charles 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN