Search found 9 matches

by mpawan
Wed Feb 26, 2014 7:53 pm
Forum: COBOL
Topic: Dynamic Array using ODO.
Replies: 3
Views: 4731

Thank You Guys !!
by mpawan
Mon Feb 24, 2014 2:11 pm
Forum: COBOL
Topic: Dynamic Array using ODO.
Replies: 3
Views: 4731

Dynamic Array using ODO.

Hi, Can we create a dynamic array and pass the ODO value using copybook? I want to create a table, but the rows in the table can vary. 01 TEST-VARIABLE OCCURS 1 TO 100 TIMES DEPENDING ON MAX-VALUE. 1) Can I dynamically control the value of MAX-VALUE using copybook? 2) Can I override the MAX-VALUE to...
by mpawan
Thu Dec 16, 2010 2:36 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Display Filed value with counts.
Replies: 9
Views: 13248

Hi,

I have consulted with my colleagues, and found that only SYNCSORT is installed in our system.

Can we use SYNCSORT for above requirement?
by mpawan
Thu Dec 16, 2010 1:33 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Display Filed value with counts.
Replies: 9
Views: 13248

Hi Frank, I have coded my jcl as: //STEP EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //SYSOUT DD SYSOUT=* //FILEIN DD DSN=TEST.FILEIP, // DISP=SHR //REPORT DD SYSOUT=* //TOOLIN DD * OCCUR FROM(FILEIN) LIST(REPORT) ON(1,5,CH) ON(VALCNT,U03) /* But i am ...
by mpawan
Wed Dec 15, 2010 8:06 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Display Filed value with counts.
Replies: 9
Views: 13248

I have a input file which has a redundant data. The field description is as follows: Event No. Description And the records in the file are as follows: 20000 ABC 30000 DEF 20000 GHI 40000 IJK 20000 LMN 30000 OPQ Now i need a sort parameter by which we can count all the occurence of all events, neglec...
by mpawan
Wed Dec 15, 2010 4:54 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Display Filed value with counts.
Replies: 9
Views: 13248

Display Filed value with counts.

Hi, I have a file in which the data is as follows: 20000 30000 20000 40000 20000 30000 40000 20000 40000 30000 20000 20000 40000 40000 30000 40000 40000 Can we sort the above file through which i can get a o/p file as below: 30000 4 (i.e. No. of occurence of 30000) 20000 6 (i.e. No. of occurence of ...
by mpawan
Mon Jan 18, 2010 4:41 pm
Forum: TSO, CLIST & REXX
Topic: How to read HEX file and convert it into decimal in REXX.
Replies: 6
Views: 16670

Thanks a lot.
by mpawan
Mon Jan 18, 2010 4:35 pm
Forum: TSO, CLIST & REXX
Topic: How to read HEX file and convert it into decimal in REXX.
Replies: 6
Views: 16670

Thanks a lot .. :)

it worked ... but can you explan me the code.
by mpawan
Mon Jan 18, 2010 2:19 pm
Forum: TSO, CLIST & REXX
Topic: How to read HEX file and convert it into decimal in REXX.
Replies: 6
Views: 16670

How to read HEX file and convert it into decimal in REXX.

Hi, I have a file in which data is in the Hex format as below. ?..%.?..........?......@... And when i give a command 'HEX ON' then the data in the file is converted as below. ?..%.?..........?......@... A00608020002013040000007300 A93C9C3C200C00C953C05C2C4CC Now i want to read the file in the HEX fo...