how to run sub programs using static and dynamic call ...
Answers were Sorted based on User's Feedback
Answer / vijay kumar
static:- its is identified by the CALL LITERAL.
Syntax:- CALL 'program name'.
Dynamic:- it is identified by the variable
Ex:- 01 ws-program pic x(8)
MOVE 'program name' to ws-program
CALL 'ws-program'.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / raj
Static Call or dynamic call depends upon how the program is
compiled.
Static call/Dynamic call can be called using literal or
variable name.
| Is This Answer Correct ? | 1 Yes | 0 No |
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
how do you reference the variable unblock file formats from cobol programs
what is the difference between start and startbr?
consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What is the Purpose of POINTER Phrase in STRING command
If i got a job on mainframe technology, will i have a bright future?. Some people are discouraging me. Let me know, is it true? Please bring back me from the confusion.
how we can edit records in vsam data set and non vsam data sets
what happens if we dont close cursor in db2-cobol pgm?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.
u have passed sme charecters thru parm parameter in jcl. how do u code in cobol to recieve the values u gave in parm ?