Chapter Contents

Previous

Next
SAS Procedures Guide

Using an OS/390 PDSE for EBCDIC HTML Output

/* Allocate a PDSE for the HTML Output. */
filename pdsehtml '.example.htm' 
                  dsntype=library dsorg=po
                  disp=(new, catlg, delete);

/* Specify the files to create for the HTML output. */
/* These files are PDSE members.                    */
/* The PATH= option specifies the location for all  */
/* the HTML files. The URL= suboption prevents      */
/* information from PATH= from appearing in the     */
/* links and references that ODS creates. The URLs  */
/* will be the same as the file specifications.     */
/* The RS= option creates HTML that you can work    */
/* with in an editor and use on an MVS Web server.  */

ods html body='odsexb'
         contents='odsexc'
         page='odsexp'
         frame='odsexf'
         path='.example.htm'(url=none)
         rs=none;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.