| Author |
Message |
Topic: FCT Open close failed |
Mike Tebb
Replies: 2
Views: 8026
|
Forum: CICS and Middleware Posted: Tue Feb 25, 2003 9:42 am Subject: FCT Open close failed |
Are you sure that the file specified as the DSN actually exists.
You would get the OPEN/CLOSE FAILED message if your file was not defined. |
Topic: How to find the offset of a variable? |
Mike Tebb
Replies: 4
Views: 5454
|
Forum: Application Programming Posted: Tue Feb 18, 2003 7:48 am Subject: How to find the offset of a variable? |
Or, if fields are going to exist after WS-VAR6 then try:
01 WS-GROUP.
05 WS-GRP1.
10 WS-VAR1 ... |
Topic: How to find the offset of a variable? |
Mike Tebb
Replies: 4
Views: 5454
|
Forum: Application Programming Posted: Tue Feb 18, 2003 7:18 am Subject: How to find the offset of a variable? |
01 WS-GROUP.
05 WS-GRP1.
10 WS-VAR1 PIC X(5).
10 WS-V ... |
Topic: How to get the difference records from 2 files using sort? |
Mike Tebb
Replies: 15
Views: 13899
|
Forum: Utilities Posted: Fri Jan 10, 2003 5:19 am Subject: How to get the difference records from 2 files using sort? |
| As Kolusu mentioned you can substitute ICETOOL with SYNCTOOL if you are in a SYNCSORT shop. |
Topic: Duplicates in Alternate Index |
Mike Tebb
Replies: 8
Views: 14478
|
Forum: Data Management Posted: Thu Jan 09, 2003 3:33 am Subject: Duplicates in Alternate Index |
| Change your TRK parameter to CYL. |
Topic: Duplicates in Alternate Index |
Mike Tebb
Replies: 8
Views: 14478
|
Forum: Data Management Posted: Tue Dec 24, 2002 9:32 am Subject: Duplicates in Alternate Index |
Bufferspace is nothing to do with your recordsize.
As you have not specified a recordsize I believe you should get a default
maximum of 32600 (spanned) or 4089 (non-spanned). The default is spanne ... |
Topic: Numeric edited conversions |
Mike Tebb
Replies: 5
Views: 6560
|
Forum: Application Programming Posted: Fri Dec 20, 2002 4:51 am Subject: Numeric edited conversions |
I wouldn't worry about the performance implications.
Anyway does it HAVE to look like that.
Coding $$$$$$$$$$$$$9.99- would give you $123.45- |
Topic: Numeric edited conversions |
Mike Tebb
Replies: 5
Views: 6560
|
Forum: Application Programming Posted: Fri Dec 20, 2002 4:28 am Subject: Numeric edited conversions |
Manas,
that gives fixed editing of -$spaces9.99.
Although the requirement seemed simple, I don't think you can get that result with a simple edit mask.
You can have floating currency symbols ... |
Topic: CICS Version |
Mike Tebb
Replies: 7
Views: 10640
|
Forum: CICS and Middleware Posted: Wed Dec 18, 2002 3:30 am Subject: CICS Version |
| Yes, but nobody will still be working on that version will they !?!?!? |
Topic: Frequency of Job |
Mike Tebb
Replies: 2
Views: 4937
|
Forum: Job Control Language(JCL) Posted: Tue Dec 17, 2002 6:44 am Subject: Frequency of Job |
| I would refer to your scheduling package for accurate details of run frequency. (OPCA, CA-7 etc.) |
Topic: Eliminate duplicates using OUTFIL- SYNCSORT |
Mike Tebb
Replies: 12
Views: 26847
|
Forum: Utilities Posted: Fri Dec 13, 2002 11:27 am Subject: Eliminate duplicates using OUTFIL- SYNCSORT |
Frank,
rest assured that I was merely making the point that XSUM is a SYNCSORT only statement, in the context of the solutions given in this (SYNCSORT) thread.
I am certainly not qualified to ta ... |
Topic: COMP-3 conversions |
Mike Tebb
Replies: 1
Views: 4119
|
Forum: Application Programming Posted: Fri Dec 13, 2002 10:16 am Subject: COMP-3 conversions |
03 WS-COMP-DATE PIC S9(9) COMP-3 VALUE 20021213.
03 WS-PIC-DATE PIC 9(9).
03 WS-PIC-DATE2 REDEFINES WS-PIC-DATE.
05 FILLER ... |
Topic: Eliminate duplicates using OUTFIL- SYNCSORT |
Mike Tebb
Replies: 12
Views: 26847
|
Forum: Utilities Posted: Fri Dec 13, 2002 9:20 am Subject: Eliminate duplicates using OUTFIL- SYNCSORT |
For what it's worth my first thought had been to use two sort steps.
My first step would output all the type 010 and 020 records to the relevant file:
//SYSIN DD *
SORT FIELDS=(509,5, ... |
Topic: Eliminate duplicates using OUTFIL- SYNCSORT |
Mike Tebb
Replies: 12
Views: 26847
|
Forum: Utilities Posted: Fri Dec 13, 2002 6:40 am Subject: Eliminate duplicates using OUTFIL- SYNCSORT |
That is exactly what I was guessing would happen.
Thanks (as ever) for your advice. |
Topic: Eliminate duplicates using OUTFIL- SYNCSORT |
Mike Tebb
Replies: 12
Views: 26847
|
Forum: Utilities Posted: Fri Dec 13, 2002 6:24 am Subject: Eliminate duplicates using OUTFIL- SYNCSORT |
Kolusu,
I had come up with the following:
//TOOLIN DD *
SORT FROM(IN) TO(OUT1) USING(CTL1)
SORT FROM(IN) TO(OUT2) USING( ... |
| |