Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
It looks to me like there's a basic problem:
Quote: |
SET DETAIL.VCADAA01 (IN=NONVSAM) |
conflicts with
Quote: |
DETAIL.VCA_VS01 (IN=VSAM) |
DDname DETAIL cannot be both NONVSAM and VSAM the way these statements indicate. That's probably why the ERROR message about DETAIL not in a valid format occurred, and that's why the job blew up.
What creates the file opened via the DETAIL statement? Is it a VSAM file? Is it a non-VSAM file? Why does the MICS program have conflicting definitions for this file? What should the file be -- VSAM or NONVSAM? Answering these questions will go a long, long way towards resolving the issue.
<rant>If you'd posted the SAS error messages instead of, or even with, your original post, you would be almost 36 hours closer to solving the problem. Posting too much detail when discussing a problem is so rare as to almost not happen on these boards!
</rant> |
|