(0001043)
|
Falk Reichbott
|
2016-11-25 00:00
(edited on: 2016-11-25 11:43) |
|
A dynamic allocation of sysout is supported with FLAM 5.1.14 like:
//FLCLCONV EXEC PGM=FLCL,REGION=0M,PARM='CONV=DD:PARM'
//STEPLIB DD DSN=&PROJ..&SYSUID..LOAD,DISP=SHR
//SYSPRINT DD SYSOUT=*
//INPUT DD *
HELO YOURMVS
MAIL FROM:<CAROL@YOUR.example.COM>
RCPT TO:<msgs@rsch.example.edu>
RCPT TO:<alice@ai.example.edu>
DATA
Date: Thur, 26 Mar 92 21:48:57 EST
From: Carol <CAROL@YOUR.example.COM>
To: <msgs@rsch.example.edu>
Cc: <alice@ai.example.edu>
Subject: update
Mike: Cindy stubbed her toe. Bobby went to
baseball camp. Marsha made the cheerleading team.
Jan got glasses. Peter has an identity crisis.
Greg made dates with 3 girls and couldn't
remember their names.
.
QUIT
//PARM DD *
read.record(file=DD:INPUT)
write.record(falloc(sysout(class='A' writer='CSSMTP)))
|
|