Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Joseph Reichman
ttp://mason.gmu.edu/~smetz3 > > > From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of > Joseph Reichman [reichman...@gmail.com] > Sent: Friday, August 13, 2021 10:29 AM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Filemanger abend and dynamic allocation

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Seymour J Metz
Reichman [reichman...@gmail.com] Sent: Friday, August 13, 2021 10:29 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Filemanger abend and dynamic allocation The s0c9 is in file manager trying to bring up the initial panel > On Aug 13, 2021, at 9:42 AM, Gilson Cesar de Oliveira > wrote: >

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Joseph Reichman
Reichman > Sent: 13 August 2021 16:04 > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Filemanger abend and dynamic allocation > > EXTERNAL EMAIL > > > > Mike don’t think it’s the number of records > Even with a very small file I get the s0c9 > > I

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Rob Scott
My advice is to get the module name and offset and report the problem to IBM. Rob Scott Rocket Software From: IBM Mainframe Discussion List On Behalf Of Joseph Reichman Sent: 13 August 2021 16:04 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Filemanger abend and dynamic allocation EXTERNAL EMAIL

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Joseph Reichman
>>> >>> >>> -- >>> Shmuel (Seymour J.) Metz >>> http://mason.gmu.edu/~smetz3 >>> >>> >>> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf >>> of Joseph Reichman [reichman...@gmail.com] >

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread mike.lamartina
>> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf >> of Joseph Reichman [reichman...@gmail.com] >> Sent: Thursday, August 12, 2021 5:23 PM >> To: IBM-MAIN@LISTSERV.UA.EDU >> Subject: Re: Filemanger abend and dynamic allocation >>

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Joseph Reichman
alf >> of Joseph Reichman [reichman...@gmail.com] >> Sent: Thursday, August 12, 2021 5:23 PM >> To: IBM-MAIN@LISTSERV.UA.EDU >> Subject: Re: Filemanger abend and dynamic allocation >> >> I got a soc9 divide exception >> This abend is from my job jose

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Gilson Cesar de Oliveira
> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf > of Joseph Reichman [reichman...@gmail.com] > Sent: Thursday, August 12, 2021 5:23 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Filemanger abend and dynamic allocation > > I got a s

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Seymour J Metz
Reichman [reichman...@gmail.com] Sent: Thursday, August 12, 2021 5:23 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Filemanger abend and dynamic allocation I got a soc9 divide exception This abend is from my job joseph.reich...@irs.gov except I cannt post from that email You mentioned sysprint however I

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Greg Price
On 8/13/2021 8:26 AM, Sri h Kolusu wrote: I got a soc9 divide exception S0C9 abend is usually due to divide by zero. Can also get it from a CVB where the decimal number is too big for 32-bit binary, as I recently found out in one of my efforts... :) Cheers, Greg

Re: Filemanger abend and dynamic allocation

2021-08-13 Thread Jeremy Nicoll
On Thu, 12 Aug 2021, at 23:51, Joseph Reichman wrote: > The only difference using SVC 99 to allocate the file I am able to get > into file manager > With tso ALLOC I blow up That suggests your ALLOC is not coded properly; it might work, but is not creating the same sort of file. This

Re: Filemanger abend and dynamic allocation

2021-08-12 Thread Joseph Reichman
The path that does SVC 99 of the output file works fine It’s the path that uses tso ALLOC that gives me the s0c9 All the other logic is the same before I submit the job that populates the output file I do a free fi and when I use SVC 99 I have text unit closeua meaning when I closed the file

Re: Filemanger abend and dynamic allocation

2021-08-12 Thread Sri h Kolusu
> I got a soc9 divide exception S0C9 abend is usually due to divide by zero. So did you check if you are performing any calculations and if all the variables have a non-zero values? you said you are allocating a file. Did you make sure that it has a valid LRECL on the SVC99 call? Thanks,

Re: Filemanger abend and dynamic allocation

2021-08-12 Thread Joseph Reichman
I got a soc9 divide exception This abend is from my job joseph.reich...@irs.gov except I cannt post from that email You mentioned sysprint however I don’t remember allocating it in either case It seems that the file I want to browse just has to be pointed to my Rexx variable filein It also

Re: Filemanger abend and dynamic allocation

2021-08-12 Thread Jeremy Nicoll
On Thu, 12 Aug 2021, at 20:28, Joseph Reichman wrote: > If the input is multiple files then I allocate the output via ADDRESS TSO > “ALLOC Why? I mean, by all means decide the name of the output file(s) before you build the JCL, but let the JCL allocate it/them. > File manger abends trying

Re: Filemanger abend and dynamic allocation

2021-08-12 Thread Sri h Kolusu
Joseph, You haven't really shown the abend messages you are getting. Taking an educated guess, you probably had a mismatch of the file attributes. The SYSPRINT dd for file manager has the following attributes LRECL = 32756, BLKSIZE = 32760, RECFM = VBA Thanks, Kolusu

Filemanger abend and dynamic allocation

2021-08-12 Thread Joseph Reichman
Hi I have a Rexx exec which implement a program that does a search for data and writes the result to a output file The exec takes 2 paths depending if the input dsn is a wild card type like 3.4 In this case the input can be many 10’s or 100 of files Or the input can be one file If the