BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Do anyome have experiences by using Stored process with SAS WebAnalytics?
3 REPLIES 3
Vince_SAS
Rhodochrosite | Level 12
The main documentation page for Web Analytics can be found at:

http://support.sas.com/documentation/onlinedoc/webanalytics/

Chapter 14 of the document, "SAS Web Analytics 5.2: Administrator's Guide" discusses the use of stored processes.

Vince DelGobbo
SAS R&D
deleted_user
Not applicable
Hi all,

I am also using (trying) Stored Process within SAS WebAnalytics.
I would like to use a basic stored process that display a text; ex=> stphello.sas
(%stpbegin;
/*simply write out a web page that says "Hello World!"*/
data _null_;
file _webout;
put '';
put 'Hello World!';
put '';
put '

Hello World!

';
put '';
put '';
run;
%stpend;
)

This is not possible with the SAS WebAnalytics GUI (???), a dataset is required; If such stored process is defined and run into SAS WebAnalytics message with no table is displayed.


Does anyome know if the use of such SAS stored process can be perform?


Thanks


GN
Vince_SAS
Rhodochrosite | Level 12
I don't know a whole lot about the Web Analytics application, but in reading the documentation (see link above), it seems to me that they do not support generic stored processes. Rather, they support stored processes that are intended to provide further analysis of the data that was collected and stored in a SAS table. That is why you are being asked to specify a table.

Using a "report link" may be something for you to investigate (see documentation link above).

I hope that this information helps you. If not, you may want to consider opening a track with our Technical Support department:

http://support.sas.com/techsup/contact/submit_emits2.html

Vince DelGobbo
SAS R&D

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 3 replies
  • 1043 views
  • 0 likes
  • 2 in conversation