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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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