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 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1705 views
  • 0 likes
  • 2 in conversation