How do you reference the fixed block file formats from cobol programs
No Answer is Posted For this Question
Be the First to Post Answer
can we use 77 level no for Redefines?if we use give an example?
What is JOBLIB and STEPLIB in JCL? what is the purpose of using it?
Can printer files (having 133 characters) be of variable length?
What are the different rules for performing sort operation?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
How you can read the file from bottom?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
What do you understand by psb and acb?
what are the error codes in cobol, db2, cics, vsam , and jcl
how to transfer the file from pc to mainframe??
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)