Page 1 of 1

BLDL error while creating a PDS Member.

Posted: Thu Jul 04, 2013 4:52 pm
by Priya
Hi,

I am trying to create PDS usign below JCL:

Code: Select all

//DISK1 DD DSN=QNQD.INPUT1.PDS,DISP= (new,CATLG,DELETE), 
// UNIT=SYSDA, 
// SPACE=(TRK,(25,10),RLSE),DCB=(RECFM=FB,LRECL=80,BLKSIZE=800), 
// DSORG=PO 
I can create the PDS successfuly here but I'm not able to create the member in the PDS it is giving BLDL error. Please help.

Re: BLDL error while creating a PDS Member.

Posted: Thu Jul 04, 2013 5:41 pm
by Robert Sample
Your SPACE parameter does not include anything for the PDS directory, hence the BLDL error. Change the (25,10) to (25,10,100)

Re: BLDL error while creating a PDS Member.

Posted: Thu Jul 11, 2013 5:46 pm
by Priya
Thanks Robert. I did miss that.

It solved the problem.

Re: BLDL error while creating a PDS Member.

Posted: Thu Jul 11, 2013 6:01 pm
by Robert Sample
Glad to hear you got it resolved.