View previous topic :: View next topic |
Author |
Message |
vak255 Intermediate
Joined: 10 Sep 2004 Posts: 384 Topics: 79
|
Posted: Wed Apr 12, 2006 7:59 am Post subject: In Fileaid Batch job, what is $$DD01 ??? |
|
|
Hi,
In the below code, I like to know what is $$DD01 represent.
Code: |
/FILEAS2 EXEC PGM=FILEAID
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=D
--
--
--
//SYSIN DD *
$$DD01 COPY IF=
|
|
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Wed Apr 12, 2006 8:10 am Post subject: |
|
|
vak255,
All the File-aid control cards starts with ($$) and then followed by the DDname to which the control cards correspond to.
DDxx: Describes the input datasets to File-AID. The xx value can be any number from 00 to 99 that matches a corresponding control card ($$DDxx). Access a maximum of 100 input datasets per execution. You must use at least one DDxx statement.
For every DDxx dd you need to have a corresponding DDxxO which defines an output dataset.The xx value must match the xx value in the corresponding input dataset (DDxx). Process a maximum of 100 output datasets per execution.
The control statement ($$DD01) corresponds to the input dataset (//DD01) and the output dataset (//DD01O).
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
vak255 Intermediate
Joined: 10 Sep 2004 Posts: 384 Topics: 79
|
Posted: Wed Apr 12, 2006 8:27 am Post subject: |
|
|
Kolusu!! really you are gr8 . how come you got answers for everything.
Thanks buddy. |
|
Back to top |
|
|
|
|