Re: DFsort error message

2024-03-28 Thread Lennie Bradshaw
-Bradshaw https: //rsclweb.com -Original Message- From: IBM Mainframe Discussion List On Behalf Of Bob T Roller Sent: 27 March 2024 17:04 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: DFsort error message One of the most important things I learned 45 years ago was 37 is always a space issue

Re: DFsort error message

2024-03-27 Thread Bob T Roller
One of the most important things I learned 45 years ago was 37 is always a space issue. 13 was an open issue and 14 a close issue. Sent from [Proton Mail](https://proton.me/mail/home) for iOS On Tue, Mar 26, 2024 at 1:24 PM, Ron Thomas

Re: DFsort error message

2024-03-26 Thread Lizette Koehler
Message- From: IBM Mainframe Discussion List On Behalf Of Sri Hari Kolusu Sent: Tuesday, March 26, 2024 11:47 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: DFsort error message >> Is this a standalone sort or one from a cobol program or db2 process? Lizette, It is a JCL invoked SORT.

Re: DFsort error message

2024-03-26 Thread Sri Hari Kolusu
>> Is this a standalone sort or one from a cobol program or db2 process? Lizette, It is a JCL invoked SORT. Clue : ICEAM1 INVOCATION ENVIRONMENT IN EFFECT - ICEAM1 ENVIRONMENT SELECTED Thanks, Kolusu DFSORT Development IBM Corporation

Re: DFsort error message

2024-03-26 Thread Lizette Koehler
Lizette -Original Message- From: IBM Mainframe Discussion List On Behalf Of Ron Thomas Sent: Tuesday, March 26, 2024 10:24 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: DFsort error message Hi All - We are getting a sort error on a huge file . Below are the details from log Parm cards

Re: DFsort error message

2024-03-26 Thread Sri Hari Kolusu
>> ICE185A 0 AN SE37 ABEND WAS ISSUED BY DFSORT, ANOTHER PROGRAM OR AN EXIT >> (PHASE Ron, Most likely your job abended due to lack of space on SORTOUT dataset. Check the JESMSGLG for a detailed explanation of the E37 abend also the dataset name. Fix the space on the dataset by adding more

Re: DFsort error message

2024-03-26 Thread Steely.Mark
List On Behalf Of Ron Thomas Sent: Tuesday, March 26, 2024 12:24 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: DFsort error message CAUTION! EXTERNAL SENDER! STOP, ASSESS, AND VERIFY Do you know this person? Were you expecting this email? If not, report it using the Report Phishing Button! Hi All

DFsort error message

2024-03-26 Thread Ron Thomas
Hi All - We are getting a sort error on a huge file . Below are the details from log Parm cards used SORT FIELDS=COPY Error Log details ICE193I 0 ICEAM1 INVOCATION ENVIRONMENT IN EFFECT - ICEAM1 ENVIRONMENT SELECTED ICE252I 1 PARMLIB OPTIONS WERE MERGED WITH INSTALLATION MODULE DEFAULTS

Re: DFSORT Error message

2017-06-02 Thread Ron Thomas
Ok both the statements are working , as i have put the continuation character wrongly . Regards Ron T -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message:

Re: DFSORT Error message

2017-06-02 Thread Elardus Engelbrecht
Sri h Kolusu wrote: >Not really. DFSORT does NOT care about the sequence of the keywords. You can >have them in any order. That is good, I was just reading those 'train tracks' schematics and a$$umed the keyword sequence could be a problem. Many thanks. Groete / Greetings Elardus

Re: DFSORT Error message

2017-06-02 Thread Sri h Kolusu
rom: Elardus Engelbrecht <elardus.engelbre...@sita.co.za> > To: IBM-MAIN@LISTSERV.UA.EDU > Date: 06/02/2017 06:54 AM > Subject: Re: DFSORT Error message > Sent by: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> > > Ron Thomas wrote: > > After RTFM, I see you

Re: DFSORT Error message

2017-06-02 Thread Ron Thomas
Thanks a lot . it worked ! Regards Ron T -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: DFSORT Error message

2017-06-02 Thread Elardus Engelbrecht
Ron Thomas wrote: After RTFM, I see you have the sequence incorrect. Change > SELECT FROM(SORTIN) TO(SORTF1) ON(16,50,CH) DISCARD(SORTF2) FIRST > USING(CTL1) to SELECT FROM(SORTIN) TO(SORTF1) DISCARD(SORTF2) ON(16,50,CH) FIRST - USING(CTL1) Let us know if this works or not? Groete /

Re: DFSORT Error message

2017-06-02 Thread Elardus Engelbrecht
Ron Thomas wrote: >I have given as below, but still the issue is there >SELECT FROM(SORTIN) TO(SORTF1) ON(16,50,CH) DISCARD(SORTF2) FIRST - >USING(CTL1) Please post the message(s). What version of DFSORT and z/OS are you using? I think your statement is now finally correct, but I am now RTFM

Re: DFSORT Error message

2017-06-02 Thread Ron Thomas
I have given as below, but still the issue is there SELECT FROM(SORTIN) TO(SORTF1) ON(16,50,CH) DISCARD(SORTF2) FIRST - USING(CTL1) Thanks, Ron T -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Re: DFSORT Error message

2017-06-02 Thread David Betten
: 06/02/2017 08:19 AM > Subject: DFSORT Error message > Sent by: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> > > Hello . > > I am trying to extract unique invoice numbers to a file using DFSORT > ,ICETOOL and below is my control card.n The o/p i want to reform

DFSORT Error message

2017-06-02 Thread Ron Thomas
Hello . I am trying to extract unique invoice numbers to a file using DFSORT ,ICETOOL and below is my control card.n The o/p i want to reformat it. I am getting the below error messages. could someone let me know where the issue is ? //TOOLINDD * SELECT FROM(SORTIN) TO(SORTF1)