How do you check the syntax of a JCL without running it?

Answer Posted / baskar

Some companies use a tool for this. it is called JJDIRECT

Is This Answer Correct ?    7 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is multithreading in jcl?

944


We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?

1773


which parameter is used to check the syntax of a jcl without executing it?

802


Explain how can the attributes of one sms dataset be copied to another dataset?

707


what is JCL?

698






Can we use DISP=SHR in output file in JCL

953


What is use of restart and how to use it?

774


What is the purpose of dd dummy statement?

947


what operation is performed by job statement?

663


What are the parameters that are used in creating a gdg?

742


How does jcl specify the job to the operating system?

755


What is one line to pass PARM from JCL to COBOL?

880


When output dataset space is required, what quantity categories are used?

834


what is the use of JCL?

666


//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*

916