BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mdavidson
Quartz | Level 8

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!

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ
Hi:
You might want to check with Tech Support. My memory was that TAGSETS.TABLEEDITOR used embedded JavaScript and that there might be problems depending on the scripting allowed by your browser. But what I can't remember was whether that was only when you were making a pivot table or under other circumstances.

Cynthia

View solution in original post

2 REPLIES 2
Cynthia_sas
SAS Super FREQ
Hi:
You might want to check with Tech Support. My memory was that TAGSETS.TABLEEDITOR used embedded JavaScript and that there might be problems depending on the scripting allowed by your browser. But what I can't remember was whether that was only when you were making a pivot table or under other circumstances.

Cynthia
mdavidson
Quartz | Level 8

Thanks Cynthia! In my case, I didn't need to use the tableeditor tagset, so I switched to ODS HTML and it worked!

 

Thanks!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 464 views
  • 0 likes
  • 2 in conversation