//step#3 exec pgm = hkbc762
what is wrong with the syntax?

Answer Posted / raghu

//STEP#3 EC PGEM=HKBC762

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

which utility is used to run a cobol-db2 program?

805


What is the difference between the positional and keyword parameters? Give examples.

705


Explain the hierarchy levels in jcl?

1118


how JCL works?

794


What is the significance of addrspc parameter in exec statement?

726






What dd statement is used to supply the name of a dataset?

772


if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?

1613


Explain the function of the steplib dd statement?

641


In sms datasets, what is the function of the dd mgmtclas keyword?

857


Explain the function of the dd dcb keyword?

696


How to pass data to a program that is coded in an exec statement?

820


what is the use of JCL?

660


What is the motivation behind coding class parameter in job statement?

684


What is the function of //jcllib statement?

802


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1035