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!
Thanks Cynthia! In my case, I didn't need to use the tableeditor tagset, so I switched to ODS HTML and it worked!
Thanks!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.