by steve-myers » Sat Feb 19, 2011 5:31 am
Dispatch level 1 support can probably help you better than I can; it's been 2 1/2 years since I had anything to do with Dispatch, but I'll do my best.
First, I do not know any "automatic" way to do this, though Dispatch level 1 support may know a way.
If I understand your post correctly, output class V routes output to Dispatch. Some other output class which you did not specify is your "normal" output class. What you have to do is route the output to class V and your "normal" output class. You can do this using // OUTPUT statements in your JCL, like this -
//A JOB ...
//MSG1 OUTPUT CLASS=V,JESDS=ALL
//MSG2 OUTPUT CLASS=?,JESDS=ALL
You will have to insert your "normal" MSGCLASS into the second OUTPUT statement. Alignment is not critical for these statements, which is why I did not use the code markup. If you want output datasets specified with SYSOUT=* or SYSOUT=V to go to both places, you will have to specify
OUTPUT=(*.MSG1,*.MSG2)
on every DD statement.