How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
No Answer is Posted For this Question
Be the First to Post Answer
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
When is a scope terminator mandatory?
S9(5)V9(2) occupies how many bytes memory ?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
) How do you access the migrate the data from production region to development region
How you can delete a record from a ps file in cobol?
Name the divisions, which are available in a cobol program?
Explain what you understand by passing by value.
SUPPOSE I HAVE 60 CHARACTERS STING. IN THAT I WANT FIND OUT HOW MANY TIMES 'A'(ASSUME)WILL REPEATED AND I HAVE TO PASS 'E' IN PLACE OF 'A'ALONG THAT STRING.
can we declare occurs in 01 level?
how can i see junk values in dclgen or in hostvariable of comp ?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2