how do we mail reports from SAS environment to our team
leader
Answers were Sorted based on User's Feedback
Answer / santhosh
filename outbox email ;
data _null_;
file outbox
to=('xisguest@sas.com')
cc=
('santhosh.stats@gmail.com','lsantosh@sristek.com','kvasukii
n@gmail.com')
/* bcc=
('pavanj.sas@gmail.com','pavankumar@sristek.com')*/
Subject="Test Email"
Attach =("C:\Documents and
Settings\xisguest\Desktop\lenova.doc"
"C:\Documents and
Settings\xisguest\Desktop\new1.doc"
"C:\Documents and
Settings\xisguest\Desktop\new2.doc"
"C:\Documents and
Settings\xisguest\Desktop\new3.doc");
put 'Hi sristek/sas ,
this is santhosh from pune pfa for code for
sending mail';
run;
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / vijayabhargava.k
by using the option proc print to and specifying the path we
can expor the data set created and the datastep along with
the log to the required destination
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / pnprasad
SAS can have a special feature, i.e we can get many types
of Output by using ODS, word, xls,txt,pdf,html,xml and
many. The same we can send via mail. For example, sending
of the clinical data to FDA by converting the datasets in
to XML.
| Is This Answer Correct ? | 0 Yes | 3 No |
Name statements that are recognized at compile time only?
wt is a-z and a--z?
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
How would you identify a macro variable?
There is a river notoriously known for it?s large crocodile population. With ease, how do you safely cross it?
What has been your most common programming mistake?
Differentiate between ceil and floor functions.
What does a PROC TRANSPOSE do?
What are the features of SAS?
How necessary is it to be creative in your work?
What is the basic syntax of a sas program?
What is the use of %include statement?