Search found 8 matches

by vikriih
Wed Nov 11, 2015 3:48 pm
Forum: Interview Questions.
Topic: Execute the Job from step11.
Replies: 3
Views: 528

Re: Execute the Job from step11.

COND statement can be used..refe: Please post links only from IBM's site.
by vikriih
Wed Nov 11, 2015 2:17 pm
Forum: Interview Questions.
Topic: TIME=0 on step and LENGTH of the field in CICS questions.
Replies: 3
Views: 518

Re: TIME=0 on step and LENGTH of the field in CICS questions.

Length in CICS map is defined by LENGTH field as in the following statement

DFHMDF POS=(4,1),LENGTH=5,ATTRB=(ASKIP,NORM),INITIAL='Name:'
by vikriih
Wed Nov 11, 2015 2:05 pm
Forum: Interview Questions.
Topic: TIME=0 on step and LENGTH of the field in CICS questions.
Replies: 3
Views: 518

Re: TIME=0 on step and LENGTH of the field in CICS questions.

refer the below examples: Example 7 //TEST1 JOB MSGLEVEL=(1,1) //STEP1 EXEC PGM=USES40,TIME=(,50) //STEP2 EXEC PGM=USESREST,TIME=0 STEP1 can use the processor for 50 seconds. If STEP1 actually uses the processor for only 40 seconds, STEP2 can use the processor for 10 seconds, because that is the tim...
by vikriih
Mon Oct 26, 2015 4:08 pm
Forum: JCL - Job Control Language.
Topic: Checking the Data existence in a file.
Replies: 6
Views: 789

Re: Checking the Data existence in a file.

use the following code //ST010 EXEC PGM=IDCAMS //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //FILEIN DD DSN=TSO.REC.IN,DISP=SHR //SYSIN DD * PRINT INFILE(FILEIN) - CHARACTER COUNT(1) It should return a return code of 4 if the dataset is empty
by vikriih
Mon Oct 26, 2015 3:56 pm
Forum: JCL - Job Control Language.
Topic: Empty PDS using JCL.
Replies: 8
Views: 1231

Re: Empty PDS using JCL.

If the name of the temporary PDS members is known we can delete them by using IEFBR14 utility of the JCL. Delete them like any other sequential dataset by giving MVS.USERID.JCL(TEMPMEM) where tempmem is the name of temporary member
by vikriih
Sat Oct 24, 2015 3:49 pm
Forum: JCL - Job Control Language.
Topic: Using ZERO BLKSIZE in JCL.
Replies: 6
Views: 964

Re: Using ZERO BLKSIZE in JCL.

BLKSIZE=0 means that developer does not want to specify the BLKSIZE and it will be defaulted to system determined
by vikriih
Sat Oct 24, 2015 3:36 pm
Forum: JCL - Job Control Language.
Topic: How copy certain job from certain PDS and change the JOB card?
Replies: 8
Views: 843

Re: How copy certain job from certain PDS and change the JOB card?

TEST.TS.A.CNTL is a Sequencial data and not a PDS..it needs to be a PDS to have a member JCL

Go to advanced search