What are the ways you can generate a copybook?
Answers were Sorted based on User's Feedback
Answer / nag(igate)
1. using 3.4 option without fileaid
2. using fileaid
| Is This Answer Correct ? | 1 Yes | 0 No |
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
what r the types of perform statement
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?
how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
what is rediffine clause?in what situation it can use?give me real time example?
what is the difference between Plan & package?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
What is the difference between a binary search and a sequential search?
what are the steps to sort in a cobol program?
consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.