What is the default value of DISP parameter?
Answers were Sorted based on User's Feedback
Answer / hari kumar
DISP= NEW (NEW,DELETE,DELETE)
SHR (SHR,KEEP,KEEP)
OLD (OLD,KEEP,KEEP)
MOD (MOD,CATLG,CATLG)
| Is This Answer Correct ? | 39 Yes | 3 No |
Answer / rekha
new--> delete,delete
old--> catlg,catlg
mod--> uncatlg,keep
shr--> keep,uncatlg
| Is This Answer Correct ? | 6 Yes | 12 No |
How to pass return codes from cobol to jcl?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
i have n records in one file and in this file there is some fields and i want to count that how many sharma in my file so plz give the coding that how we read sharma ?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
Explain the difference between an internal and an external sort, the pros and cons, internal sort syntax etc.
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you
Can you REWRITE a record in an ESDS file? Can you DELETE a record from it?
6 Answers ABC, IBM, Mphasis, Wipro,
can we use variable picture clause as xx.99 in cobol.
what is the difference between occurs and occurs depending on? i dont think so there is the difference in storage..then why we should use occurs depending on?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
What are the ways you can generate a copybook?