I have a variable account-number declared as comp-3, s9(10)
comp-3 in a file. How do i find a particular account number
say 123456 in that file?
Answers were Sorted based on User's Feedback
Answer / manoj
there are few ways for that
1. Write a cobol program
if com3field = 123456
display 'record'
2. Open the file in HEX ON mode and read records one by one :)
3. else use sort utility in jcl
OPTION COPY
INCLUDE COND=(1,8,PD,EQ,123456)
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vs kumar
By using File-aid we can see the comp-3 data item.
Please correct me if i am wrong.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / balaji
Put HEX ON in the file and you can find the numbers
equivalent to the hexa decimal
Is This Answer Correct ? | 0 Yes | 1 No |
What is the difference between PIC 9.99 and PIC9v99?
I have a file it contain 10 records.i got abend at 8th record because of soc7.how do you know that perticular record got abend?
How are the next sentence and continue different from each other?
Whats the use of Examine command? can someone help me?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What are the various section in data division and briefly explain them.
01 a pic s9(5) occupies how many bytes ?
wht r the advantages of 77 level number ?
What is difference between static and dynamic call in cobol?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
What was removed from COBOL in the COBOL II implementation?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.