FLAM Issue Tracker - FL5
View Issue Details
0000834FL52.2 Subprogram FLUC (CONV)public2016-11-23 17:342016-11-25 11:43
Falk Reichbott 
Falk Reichbott 
normalfeatureN/A
resolvedfixed 
System zz/OSV2R20
5.1.13 
5.1.155.1.14 
0000834: Support dynamic allocation of SYSOUT
Currently the FALLOC object don't support a dynamic allocation of SYSOUT. A parameter like

FALLOC(SYSOUT(CLASS='A',WRITER='SMTP'))

would be useful.
   
No tags attached.
related to 0000835resolved Falk Reichbott Support write of files as mail attachment over the SYSOUT(TCPCSMTP) 
Issue History
2016-11-23 17:34Falk ReichbottNew Issue
2016-11-23 17:34Falk ReichbottStatusnew => assigned
2016-11-23 17:34Falk ReichbottAssigned To => Falk Reichbott
2016-11-23 17:38Falk ReichbottRelationship addedrelated to 0000835
2016-11-25 00:00Falk ReichbottNote Added: 0001043
2016-11-25 00:00Falk ReichbottStatusassigned => resolved
2016-11-25 00:00Falk ReichbottFixed in Version => 5.1.14
2016-11-25 00:00Falk ReichbottResolutionopen => fixed
2016-11-25 11:43Falk ReichbottNote Edited: 0001043bug_revision_view_page.php?bugnote_id=1043#r321

Notes
(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)))