Re: Return code 8 from assembler no messages

2016-02-14 Thread John McDonald
SIGNOFF ASMEMBLER-LIST


On Fri, Feb 12, 2016 at 8:36 AM, michelbutz  wrote:

> Thanks
>
> Sent from my iPhone
>
> > On Feb 12, 2016, at 8:06 AM, Peter Relson  wrote:
> >
> > Maybe there were no messages that you saw, but that doesn't mean there
> > were no messages. Did you happen to look at the
> > Diagnostic Cross Reference and Assembler Summary
> > section of the listing?
> >
> > PRINT OFF affects what is displayed. IHAPSA by default is PRINT OFF. You
> > have control of that via the LIST keyword. The PC(ON) assembler option
> can
> > be a useful tool as that will show everything regardless of PRINT OFF.
> >
> > FWIW, this test program
> > TESTCSECT
> >IHAPSA
> >IHAPSA
> >IHAASCB
> >IHAASCB
> >END   TEST
> > finishes on my system with CC 20 and has no difference in the listing
> > between FLAG(0) and FLAG(8), but PC(ON) shows the messages which near the
> > end has
> > ** ASMA043E Previously defined symbol - PSAIORTY
> > ** ASMA257U Number of severity 8 messages exceeds FAIL MAXERRS value
> > specified
> >
> > (Our FAIL(MAXERRS) default is apparently 500; with a larger FAIL(MAXERRS)
> > the assembly does get CC 8)
> >
> > Since the assembly terminates upon ASMA257U (well, almost terminates, as
> > there still are a few things that get shown in the listing after that)
> > things like the "POP" at the end of IHAPSA don't happen. But that
> wouldn't
> > help you much since all the error messages are within the PRINT OFF
> > section.
> >
> > Perhaps the assembler team would consider displaying ASMA257U even if
> > PRINT OFF is in effect.
> >
> > Regardless, PC(ON) can be your friend.
> >
> >
> > Peter Relson
> > z/OS Core Technology Design
>


Re: Return code 8 from assembler no messages

2016-02-12 Thread John P. Hartmann
The message was issued in a section of code that was PRINT OF.  Refer to 
the diagnostics cross reference.


On 02/11/2016 11:18 PM, michelbutz wrote:

Hi

I am getting a rerun code 8 from ASMA90
And I don't have any assembler error messages or
MNOTES the source is a number of CSECTS

Thanks



Re: Return code 8 from assembler no messages

2016-02-12 Thread michelbutz
Sent from my iPhone

> On Feb 12, 2016, at 8:06 AM, Peter Relson  wrote:
> 
> Maybe there were no messages that you saw, but that doesn't mean there 
> were no messages. Did you happen to look at the
> Diagnostic Cross Reference and Assembler Summary
> section of the listing? 
> 
> PRINT OFF affects what is displayed. IHAPSA by default is PRINT OFF. You 
> have control of that via the LIST keyword. The PC(ON) assembler option can 
> be a useful tool as that will show everything regardless of PRINT OFF.
> 
> FWIW, this test program 
> TESTCSECT 
>IHAPSA 
>IHAPSA 
>IHAASCB 
>IHAASCB 
>END   TEST 
> finishes on my system with CC 20 and has no difference in the listing 
> between FLAG(0) and FLAG(8), but PC(ON) shows the messages which near the 
> end has
> ** ASMA043E Previously defined symbol - PSAIORTY  
> ** ASMA257U Number of severity 8 messages exceeds FAIL MAXERRS value 
> specified 
> 
> (Our FAIL(MAXERRS) default is apparently 500; with a larger FAIL(MAXERRS) 
> the assembly does get CC 8) 
> 
> Since the assembly terminates upon ASMA257U (well, almost terminates, as 
> there still are a few things that get shown in the listing after that) 
> things like the "POP" at the end of IHAPSA don't happen. But that wouldn't 
> help you much since all the error messages are within the PRINT OFF 
> section.
> 
> Perhaps the assembler team would consider displaying ASMA257U even if 
> PRINT OFF is in effect.
> 
> Regardless, PC(ON) can be your friend.
> 
> 
> Peter Relson
> z/OS Core Technology Design


Re: Return code 8 from assembler no messages

2016-02-12 Thread michelbutz
I did a flag(8) as I got return code 8 and that produced the messages 

Thanks



> On Feb 12, 2016, at 8:06 AM, Peter Relson  wrote:
> 
> Maybe there were no messages that you saw, but that doesn't mean there 
> were no messages. Did you happen to look at the
> Diagnostic Cross Reference and Assembler Summary
> section of the listing? 
> 
> PRINT OFF affects what is displayed. IHAPSA by default is PRINT OFF. You 
> have control of that via the LIST keyword. The PC(ON) assembler option can 
> be a useful tool as that will show everything regardless of PRINT OFF.
> 
> FWIW, this test program 
> TESTCSECT 
>IHAPSA 
>IHAPSA 
>IHAASCB 
>IHAASCB 
>END   TEST 
> finishes on my system with CC 20 and has no difference in the listing 
> between FLAG(0) and FLAG(8), but PC(ON) shows the messages which near the 
> end has
> ** ASMA043E Previously defined symbol - PSAIORTY  
> ** ASMA257U Number of severity 8 messages exceeds FAIL MAXERRS value 
> specified 
> 
> (Our FAIL(MAXERRS) default is apparently 500; with a larger FAIL(MAXERRS) 
> the assembly does get CC 8) 
> 
> Since the assembly terminates upon ASMA257U (well, almost terminates, as 
> there still are a few things that get shown in the listing after that) 
> things like the "POP" at the end of IHAPSA don't happen. But that wouldn't 
> help you much since all the error messages are within the PRINT OFF 
> section.
> 
> Perhaps the assembler team would consider displaying ASMA257U even if 
> PRINT OFF is in effect.
> 
> Regardless, PC(ON) can be your friend.
> 
> 
> Peter Relson
> z/OS Core Technology Design


Re: Return code 8 from assembler no messages

2016-02-12 Thread michelbutz
Thanks 

Sent from my iPhone

> On Feb 12, 2016, at 8:06 AM, Peter Relson  wrote:
> 
> Maybe there were no messages that you saw, but that doesn't mean there 
> were no messages. Did you happen to look at the
> Diagnostic Cross Reference and Assembler Summary
> section of the listing? 
> 
> PRINT OFF affects what is displayed. IHAPSA by default is PRINT OFF. You 
> have control of that via the LIST keyword. The PC(ON) assembler option can 
> be a useful tool as that will show everything regardless of PRINT OFF.
> 
> FWIW, this test program 
> TESTCSECT 
>IHAPSA 
>IHAPSA 
>IHAASCB 
>IHAASCB 
>END   TEST 
> finishes on my system with CC 20 and has no difference in the listing 
> between FLAG(0) and FLAG(8), but PC(ON) shows the messages which near the 
> end has
> ** ASMA043E Previously defined symbol - PSAIORTY  
> ** ASMA257U Number of severity 8 messages exceeds FAIL MAXERRS value 
> specified 
> 
> (Our FAIL(MAXERRS) default is apparently 500; with a larger FAIL(MAXERRS) 
> the assembly does get CC 8) 
> 
> Since the assembly terminates upon ASMA257U (well, almost terminates, as 
> there still are a few things that get shown in the listing after that) 
> things like the "POP" at the end of IHAPSA don't happen. But that wouldn't 
> help you much since all the error messages are within the PRINT OFF 
> section.
> 
> Perhaps the assembler team would consider displaying ASMA257U even if 
> PRINT OFF is in effect.
> 
> Regardless, PC(ON) can be your friend.
> 
> 
> Peter Relson
> z/OS Core Technology Design


Re: Return code 8 from assembler no messages

2016-02-11 Thread Lizette Koehler
Of course if you know when the last good assemble was, and what was changed, you
could do the "one-line-at-a-time" remove and assemble process.

Lizette


> -Original Message-
> From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On
> Behalf Of Lizette Koehler
> Sent: Thursday, February 11, 2016 3:40 PM
> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
> Subject: Re: Return code 8 from assembler no messages
> 
> If you cannot find a reason and cannot share the code, I would say an SR to
> IBM would be helpful.
> So unless there is an ASMA or MNOTE you did not see, you probably need IBM's
> Help and it might be an aparable issue.
> 
> Lizette
> 
> 
> > -Original Message-
> > From: IBM Mainframe Assembler List
> > [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On Behalf Of michelbutz
> > Sent: Thursday, February 11, 2016 3:18 PM
> > To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
> > Subject: Return code 8 from assembler no messages
> >
> > Hi
> >
> > I am getting a rerun code 8 from ASMA90 And I don't have any assembler
> > error messages or MNOTES the source is a number of CSECTS
> >
> > Thanks


Re: Return code 8 from assembler no messages

2016-02-11 Thread Ngan, Robert
Would PRINT OFF suppress error messages too?

-Original Message-
From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On 
Behalf Of John Ehrman
Sent: Thursday, February 11, 2016 17:49
To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
Subject: Re: Return code 8 from assembler no messages

Michael Butz wrote:

>I am sorry i had multiple definitions of IBM Mapping macros IHAPSA
>IHAASCB

>Wonder why it didn't flag it as ** previously defined 

It should; otherwise there's no way to locate the problem.

 CSC - This is a PRIVATE message - If you are not the intended recipient, 
please delete without copying and kindly advise us by e-mail of the mistake in 
delivery.  NOTE: Regardless of content, this e-mail shall not operate to bind 
the Company to any order or other contract unless pursuant to explicit written 
agreement or government initiative expressly permitting the use of e-mail for 
such purpose.


Re: Return code 8 from assembler no messages

2016-02-11 Thread michelbutz
I am sorry i had multiple definitions of IBM 
Mapping macros IHAPSA IHAASCB

Wonder why it didn't flag it as ** previously defined 

Sent from my iPhone

> On Feb 11, 2016, at 5:41 PM, Lizette Koehler <stars...@mindspring.com> wrote:
> 
> Of course if you know when the last good assemble was, and what was changed, 
> you
> could do the "one-line-at-a-time" remove and assemble process.
> 
> Lizette
> 
> 
>> -Original Message-
>> From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] 
>> On
>> Behalf Of Lizette Koehler
>> Sent: Thursday, February 11, 2016 3:40 PM
>> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
>> Subject: Re: Return code 8 from assembler no messages
>> 
>> If you cannot find a reason and cannot share the code, I would say an SR to
>> IBM would be helpful.
>> So unless there is an ASMA or MNOTE you did not see, you probably need IBM's
>> Help and it might be an aparable issue.
>> 
>> Lizette
>> 
>> 
>>> -Original Message-
>>> From: IBM Mainframe Assembler List
>>> [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On Behalf Of michelbutz
>>> Sent: Thursday, February 11, 2016 3:18 PM
>>> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
>>> Subject: Return code 8 from assembler no messages
>>> 
>>> Hi
>>> 
>>> I am getting a rerun code 8 from ASMA90 And I don't have any assembler
>>> error messages or MNOTES the source is a number of CSECTS
>>> 
>>> Thanks


Re: Return code 8 from assembler no messages

2016-02-11 Thread John Ehrman
Michael Butz wrote:

>I am sorry i had multiple definitions of IBM 
>Mapping macros IHAPSA IHAASCB

>Wonder why it didn't flag it as ** previously defined 

It should; otherwise there's no way to locate the problem.


Re: Return code 8 from assembler no messages

2016-02-11 Thread Lizette Koehler
If you cannot find a reason and cannot share the code, I would say an SR to IBM
would be helpful.
So unless there is an ASMA or MNOTE you did not see, you probably need IBM's
Help and it might be an aparable issue.

Lizette


> -Original Message-
> From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On
> Behalf Of michelbutz
> Sent: Thursday, February 11, 2016 3:18 PM
> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
> Subject: Return code 8 from assembler no messages
> 
> Hi
> 
> I am getting a rerun code 8 from ASMA90 And I don't have any assembler error
> messages or MNOTES the source is a number of CSECTS
> 
> Thanks


Re: Return code 8 from assembler no messages

2016-02-11 Thread michelbutz
Thanks give me 5 - 10 minutes 
Thanks so much 

Sent from my iPhone

> On Feb 11, 2016, at 5:39 PM, Lizette Koehler  wrote:
> 
> If you cannot find a reason and cannot share the code, I would say an SR to 
> IBM
> would be helpful.
> So unless there is an ASMA or MNOTE you did not see, you probably need IBM's
> Help and it might be an aparable issue.
> 
> Lizette
> 
> 
>> -Original Message-
>> From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] 
>> On
>> Behalf Of michelbutz
>> Sent: Thursday, February 11, 2016 3:18 PM
>> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
>> Subject: Return code 8 from assembler no messages
>> 
>> Hi
>> 
>> I am getting a rerun code 8 from ASMA90 And I don't have any assembler error
>> messages or MNOTES the source is a number of CSECTS
>> 
>> Thanks


Re: Return code 8 from assembler no messages

2016-02-11 Thread michelbutz
Just did a FLAG(8) the default is flag(0) and it picked it up

Sent from my iPhone

> On Feb 11, 2016, at 7:21 PM, Ngan, Robert <rn...@csc.com> wrote:
> 
> Would PRINT OFF suppress error messages too?
> 
> -Original Message-
> From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] 
> On Behalf Of John Ehrman
> Sent: Thursday, February 11, 2016 17:49
> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU
> Subject: Re: Return code 8 from assembler no messages
> 
> Michael Butz wrote:
> 
>> I am sorry i had multiple definitions of IBM Mapping macros IHAPSA
>> IHAASCB
> 
>> Wonder why it didn't flag it as ** previously defined 
> 
> It should; otherwise there's no way to locate the problem.
> 
> CSC - This is a PRIVATE message - If you are not the intended recipient, 
> please delete without copying and kindly advise us by e-mail of the mistake 
> in delivery.  NOTE: Regardless of content, this e-mail shall not operate to 
> bind the Company to any order or other contract unless pursuant to explicit 
> written agreement or government initiative expressly permitting the use of 
> e-mail for such purpose.