if someone is using my file,how can i find which user id is
using?
Answer Posted / sravani4022
Using WHOHAS command infront of the file in ISPF 3.4
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can we redefine the field of x(200) to less than 200?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
What is length is cobol?
What are the different types of condition in cobol and write their forms.
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
What is report-item in COBOL?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What is difference between static and dynamic call in cobol?
Differentiate between structured cobol programming and object-oriented cobol programming.
Difference between cobol and cobol-ii?
What is the problem of ordered sequential files access?
Which is not true about evaluate statement
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?