Search found 6 matches

by deepu2pani
Fri Mar 10, 2017 8:45 pm
Forum: COBOL
Topic: Conver the HEX values
Replies: 2
Views: 5890

I finally found the answer, We can do it with Sort

OPTION COPY
INREC BUILD=(1,2,TRAN=UNHEX)
by deepu2pani
Fri Mar 10, 2017 1:46 am
Forum: COBOL
Topic: Conver the HEX values
Replies: 2
Views: 5890

Conver the HEX values

Hi, the Hex value of ! is X'5A' the Hex value of @ is X'7C' the Hex value of # is X'7B' INPUT FILE (File length is 2 bytes) 5A 7C 7B My requirement is to read the Input file and check the HEX decimal value of the 2 byte field and write the value in to output file OUTPUT FILE (File length is 1 bytes)...
by deepu2pani
Tue Sep 10, 2013 11:51 am
Forum: DFSORT , ICETOOL & Utilities
Topic: Remove Duplicates
Replies: 3
Views: 4400

Key Field is only ACCOUNT-NUMBER = 20bytes (Position 01-20) Transaction Date = 6bytes (position 31-36) LRECL = 57 bytes I want account number with latest transaction date in the output file. We can easily do this in 2 steps STEP01: Sort the account number and transaction date in decending order STEP...
by deepu2pani
Mon Sep 09, 2013 1:29 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Remove Duplicates
Replies: 3
Views: 4400

Remove Duplicates

Hi, I have a file with Account number and Transaction Date. I need to delete the duplicate account number but i want to delete the duplicate accounts which has the old transaction date. is it possible to do this in single step using sort. MY INPUT FILE ----+----1----+----2----+----3----+----4----+--...
by deepu2pani
Fri Feb 10, 2012 1:18 pm
Forum: JCL
Topic: Run jobs from a PDS automatically.
Replies: 5
Views: 6805

Thanks for the Replay,

Can you please tell me that how to add the step at the end (syntax) of the job that will execute the the next job.

what do you mean by the (write a program that would enable you to handle jobs with multiple predecessors/successors)
by deepu2pani
Thu Feb 09, 2012 7:41 pm
Forum: JCL
Topic: Run jobs from a PDS automatically.
Replies: 5
Views: 6805

Run jobs from a PDS automatically.

HI , I have 10 jobs in a PDS, I need to run all the jobs one by one. right now i am running them manually. Is it possible to execute all the jobs one by one automatically (i dont have CA7 tool). if any job abends in the middle then next job is not suppose to run. Can some one please help me. Thanks,...