BookmarkSubscribeRSS Feed
shiva
Calcite | Level 5
Hi,
I am not able to see any output in SAS IDP.But if I run Stored process in EG i am able to see the output.

My SSP code :

proc template;
define style styles.test;
parent=styles.default;
style table from table /
prehtml='





';
end;
run;
ods html file='temp.html' style=styles.test
headtext='
';
proc print data=sashelp.class;
run;
ods html close;

Thanks,
3 REPLIES 3
Vince_SAS
Rhodochrosite | Level 12
Try changing your opening ODS statement from this:

[pre]file='temp.html'[/pre]

to this:

[pre]file=_webout[/pre]

Note that this will only work when the stored processes is executing on a Stored Process Server, and when either the SAS Stored Process Web Application or the SAS Information Delivery Portal is used to execute the stored process.

If you need to execute the stored process from multiple clients, the use of the STPBEGIN and STPEND macros is recommended:

http://support.sas.com/documentation/cdl/en/stpug/61271/HTML/default/a003152542.htm

Vince DelGobbo
SAS R&D
shiva
Calcite | Level 5
Hi,

Can I send the content of the report in the email rather that the link of the stored process.

For e.g When i click Email link in the IDP it only send the link,but i want to send the content via email.

Thanks,
shiva
Vince_SAS
Rhodochrosite | Level 12
I don't think there is any do to this from the Portal using the technique you describe.

You could create a stored process that automatically emails the result to the appropriate individuals after the stored process finishes execution.

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
  • 980 views
  • 0 likes
  • 2 in conversation