|
|
| Author |
Message |
kratos86
New User
Joined: 17 Mar 2008 Posts: 37 Location: Anna NGR
|
|
|
|
Hi,
I have a requirement to use ICEGENER to create a empty file as follows,
| Code: |
//PSEMPTY EXEC PGM=ICEGENER
//SYSUT1 DD DSN=NULLFILE
//SYSUT2 DD DSN=XXDD.MAINT,UNIT=SYSALLDA,
// SPACE=(TRK,(0,1),RLSE),DCB=XXDD.EARLY,
// DISP=(,CATLG)
//SYSIN DD DSN=NULLFILE
//SYSPRINT DD SYSOUT=&P
//SYSUDUMP DD SYSOUT=&I |
it gives RC=12 with message
| Code: |
DATA SET UTILITY - GENERATE
IEB311I CONFLICTING DCB PARAMETERS |
I thought the Nullfile is creating the problem and tried with dummy but no use.
pls. assist me, your help really appreciated.
Thanks,
Raj |
|
| Back to top |
|
 |
References
|
|
 |
superk
Moderator Team Head
Joined: 26 Apr 2004 Posts: 4060 Location: Charlotte,NC USA
|
|
|
|
| You need to supply the appropriate DCB parameters to SYSUT1 (RECFM and LRECL should do). |
|
| Back to top |
|
 |
kratos86
New User
Joined: 17 Mar 2008 Posts: 37 Location: Anna NGR
|
|
|
|
Thanks for the help, that works...
But can u pls. elaborate why we need that for a nullfile or dummy. |
|
| Back to top |
|
 |
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 4258 Location: Atlanta, GA
|
|
|
|
| If the system cannot get the DCB values from the program, you need to supply them in the JCL. NULLFILE or DUMMY is still a file, so must have a complete DCB. |
|
| Back to top |
|
 |
|
|