Hi --
My stored procedures that return data to the _WEBOUT pane of the stored process web app are missing horizontal scroll bars when the report returns data that is too wide to fit in the existing pane. I've tried to use several browsers (chrome, firefox, IE) and still have the same issue across browsers. The vertical scroll bar automatically comes up and is not an issue.
I'm using the following options on the stored process URL:
https://zzzz.zzzzz.zzzzz/SASStoredProcess/do?_ACTION=properties&_ACTION=INDEX
Code for delivering my report to the user:
ods tagsets.tableeditor file=_WEBOUT
options(frozen_headers="yes" data_type="String,String,String,String,String,String,String,String,String,String,String"
sort="yes"
sort_underline="yes");
options missing='0' label;
proc print data=work.t3 noobs;run;
title; footnote;
ods tagsets.tableeditor close;
Any ideas on what the issue might be?
Thanks!
... View more