缓存访问方法



我正在调试一个将PDF写入_webout的存储进程Web应用程序。

我想在工作区会话中运行时避免以下错误:

ERROR: Function is only valid for filerefs using the CACHE access method.

我已经尝试了filename _webout tempfilename _webout dummy,但无济于事。

有什么来自现场的提示吗?

你试过吗

filename _webout cache;

这似乎在我的版本中有效,但我不知道输出在哪里。

另一种方法是检查 _webout fileref 的引擎类型,如果 xengine 是 STREAM,则避免使用标头函数。

此宏用于: https://core.sasjs.io/mf__getxengine_8sas.html

用法:

    %if %mf_getxengine(_WEBOUT)=STREAM %then %do;
      /* set header function */
    %end;

相关内容

  • 没有找到相关文章

最新更新