if we have a 10 steps how to override the 4th step in jcl?
Answers were Sorted based on User's Feedback
Answer / parvatraj m bhuti
Code cond parameter
as
cond= (0,GT).. Thats all.
Is This Answer Correct ? | 0 Yes | 10 No |
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible
input:- 12233344445555566666... output:- 1=1,2=4,3=9... Here firstno i.e 1 should be displayed and after that the alikeno.s should be added n displayed.i.e 2+2=4 like tat it goeson.
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
Give some examples of command terminators?
What type of Call you would use if you don;t want the control back to the calling program?
What are various search techniques in cobol? Explain.
how can count the number of character in feild ?? suppose for instance i have a feild with value ' rajesh sarkar' then how can v count the number of characters whitout spaces...........
What is COMP SYNC?
What is mean by maxcc
how to move the records from file to array table. give with code example
01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.