| ENCODING | indicates the character set of the HTML files, such as ISO-8859-1. The default encoding is assumed from the native session. |
| COMPANION_FILE | indicates the name of an additional HTML file that
is to be added to this set of HTML files. Multiple COMPANION_FILE
properties and values can be specified. Name the companion files,
using either FILEREF:SAS_fileref or FILENAME:external_filename.
|
| COMPANION_MIMETYPE | indicates the MIME type of the companion file that is to be added to the inserted HTML entry. If specified, then this property must be preceded by the COMPANION_FILE property. |
| COMPANION_URL | indicates the URL of an HTML file that is to be added to the inserted HTML entry. If specified, then this property must be preceded by the COMPANION_FILE property. |
| GPATH | indicates the name of a single directory that contains the ODS-generated graphical files for inclusion as companion files to the HTML file set. Note that all files in the specified directory are included as companion files. |
| GPATH_URL | indicates the URL of the directory that contains the ODS-generated graphical files. An example of a URL might be ~ods-output/images. Alternatively, you can specify "NONE" as the GPATH_URL property value. If the value of "NONE" is specified, then only the filename is used as the URL. Note that if GPATH_URL is specified, then you must also specify the GPATH property. |
| NESTED_NAME | indicates the name of the nested directory to create for the storage of the set of HTML files. If you do not specify a value for this property, then a name is generated automatically. Note that the NESTED_NAME property is valid only when publishing to the WebDAV-compliant server transport. |
Desc='HTML output for payroll processing';
nameValue = '';
filename f '/users/f.html';
filename c '/users/c.html';
filename b '/users/b.html';
filename p '/users/p.html';
ods html frame=f contents=c(url='c.html')
body=b(url='b.html') page=p(url='p.html');
/* insert SAS statements here to generate ODS output */
ods html close;
CALL INSERT_HTML(packageId, 'fileref:b', "b.html",
'fileref:f', "f.html", 'fileref:c', "c.html",
'fileref:p', "p.html", desc, nameValue, rc); Desc='HTML output for payroll processing';
nameValue = '';
CALL INSERT_HTML(packageId, 'fileref:b', "b.html",
'fileref:f', "f.html", 'fileref:c', "c.html",
'fileref:p', "p.html", desc, nameValue, rc,
"encoding", "ISO-8859-1"); Desc='HTML output for payroll processing'; nameValue = ''; properties='encoding, companion_file, companion_file'; encodingV = "ISO-88591-1"; file1 = "filename: report.html"; file2 = "filename: dept.html"; CALL INSERT_HTML(packageId, 'fileref:b', "b.html", 'fileref:f', "f.html", 'fileref:c', "c.html", 'fileref:p', "p.html", desc, nameValue, rc, properties, encodingV, file1, file2);
Desc='HTML output for payroll processing'; nameValue = ''; CALL INSERT_HTML(packageId, 'filename:/users/jsmith/body*.html', "body*.html", 'fileref:f', "f.html", 'fileref:c', "c.html", 'fileref:p', "p.html", desc, nameValue, rc);