mfuser Banned
Joined: 01 Mar 2005 Posts: 105 Topics: 58
|
Posted: Sun Jul 09, 2006 1:21 am Post subject: updating Binary values in a file |
|
|
Members,
I have a File in which there are two fields with BI format .To know the exact value in ZD i use the below JCL:
Code: |
//SYSIN DD *
OPTION COPY
OUTREC FIELDS=(1,49,X,
50,2,BI,TO=ZD,X,
52,2,BI,TO=ZD)
/*
|
I get the output below as for the two Binary fields:
Code: |
00000 00000
00000 00000
00000 00000
00000 00000
00000 00000
00000 00000
00000 00000
00000 00000
|
If i want to update the File with the intention of having Binary values to get the ouput in ZD values as below :
Code: |
00000 00270
00000 00270
00000 00270
00000 00270
00000 00270
00000 00270
00000 00270
00000 00270
|
What should be the JCL ? Can anybody help me out in the problem ? |
|