SAS Enterprise Guide UNIX WORK 库 - 查看文件

发布于 2024-08-08 03:48:47 字数 361 浏览 4 评论 0原文

如何查看企业指南 (v 4.1) 中的以下文件?

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
    file "&libWORK./MYFILE.htm";
    put '<html>' /
        '   <head>'/
        '       <title> A Title </title>'/
        '</head> <body> some content </body> </html>';
run;

How do I view the file below in Enterprise Guide (v 4.1 )?

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
    file "&libWORK./MYFILE.htm";
    put '<html>' /
        '   <head>'/
        '       <title> A Title </title>'/
        '</head> <body> some content </body> </html>';
run;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恋你朝朝暮暮 2024-08-15 03:48:47

知道了!最终。

data _null_;
    file print;
    infile "&libWORK./MYFILE.htm"; 
    input;
    put _infile_;
run;

Got it! eventually.

data _null_;
    file print;
    infile "&libWORK./MYFILE.htm"; 
    input;
    put _infile_;
run;
椵侞 2024-08-15 03:48:47

实际上 - 令人烦恼的是 - 我之前的解决方案没有帮助。 SAS 仍然对 HTML 应用“包装器”,破坏任何标头信息(例如 Javascript 函数)。

下面将修复它 - 基本上运行一段虚拟代码来在您的 EG 会话中创建引用,然后继续用您选择的一些纯 html 覆盖它!链接将保留...

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ; 
ods html body="&libWORK./MYFILE.htm" ;
data _null_;
 file print;
 put "this will be overwritten! ";
run;
ods html close;

data _null_; 
    file "&libWORK./MYFILE.htm"; 
    put '<html>' / 
        '       <head>'/ 
        '               <title> A Title </title>'/ 
        '</head> <body> some content </body> </html>'; 
run;

Actually - annoyingly - my previous solution didn't help. SAS still applies a 'wrapper' to the HTML, destroying any header information (eg Javascript functions).

The following will fix it - basically run a dummy piece of code to create the reference in your EG session, then proceed to overwrite it with some pure html of your choosing! The link will remain...

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ; 
ods html body="&libWORK./MYFILE.htm" ;
data _null_;
 file print;
 put "this will be overwritten! ";
run;
ods html close;

data _null_; 
    file "&libWORK./MYFILE.htm"; 
    put '<html>' / 
        '       <head>'/ 
        '               <title> A Title </title>'/ 
        '</head> <body> some content </body> </html>'; 
run;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文