Can we move X(7) to S9(7) COMP?
Answer / shib
yes we can if value of x(7) contains numeric data like 1234567 or 0000000
We will not get any error.
Is This Answer Correct ? | 0 Yes | 1 No |
WHY LRECL NEEDS TO BE 4 EXTRA THEN THE COBOL FILE LENGTH & WHAT IT CONTAIN IN THAT LENGTH
what is the difference between Plan & package?
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
What does MAXCC 3 means? It is used in one my codes.
how do you reference the esds vsam file formats from cobol programs
How to convert bunch of words in a line to relvant ASCII values?
how to transfer the file from pc to mainframe??
When is inspect verb is used in cobol?
Name the divisions 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.