Search found 3 matches

by vrajx
Mon Dec 28, 2009 4:05 pm
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14857

anytime... :)
by vrajx
Mon Dec 28, 2009 12:10 pm
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14857

Hey Nagesh, what Dick said is correct. you have two ways. 1) Either you could do X ALL; C ALL '##' '$$'; C ALL PRG ARG The above command will hide all the lines of the code and does two changes a) change ## to $$ where it encounters and b) change PRG from ARG --- Once all the changes are done you ca...
by vrajx
Thu Dec 24, 2009 2:56 pm
Forum: JCL
Topic: quikjob
Replies: 2
Views: 12176

use the following code to acheive it MOVE C'''' TO OFA36. MOVE VAL62-63 TO OFA48-49. <-- this contains HH MOVE C'.' TO OFA50. MOVE VAL65-66 TO OFA51-52. <- this contains MM MOVE C'.' TO OFA53. MOVE C'00' TO OFA54-55. MOVE C'.' TO OFA56. The VAL62-66 contains the system time in HH:MM format.