Appendix 4
ODS HTML Statements for
Running Examples in Different
Operating Environments
Using a z/OS UNIX System Services HFS Directory for HTML Output . . . . . . 1113
Using a z/OS PDSE for EBCDIC HTML Output . . . . . . . . . . . . . . . . . . . . . . . . . 1113
Using a z/OS PDSE for ASCII HTML Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1114
Using a z/OS UNIX System Services HFS
Directory for HTML Output
/* Specify the files to create for the HTML output. */
/* 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. */
ods html body='odsexample-body.htm'
contents='odsexample-contents.htm'
page='odsexample-page.htm'
frame='odsexample-frame.htm'
path='~'(url=none);
Using a z/OS 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. */
1113

Get SAS 9.4 Output Delivery System, 4th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.