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 |
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
How many versions came upto now in SAS?
What is the maximum length of the macro variable? : sas-macro
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
What is the work of tranwrd function?
Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com
What are some problems you might encounter in processing missing values? In Data steps? Arithmetic? Comparisons? Functions? Classifying data?
what are some differences between proc summary and proc means? : Sas programming
What is the difference between using drop = data set option in data statement and set statement?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
How do handle working under pressure?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5