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 |
How are numeric and character missing values represented internally?
What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
1 Answers Accenture, Sciformix,
Explain substr function?
How would you compile all macros from a folder in a study, within the autoexec program?
what are the component of range? : Sas-bi
What can be the size of largest dataset in SAS?
What is the registered Key word is sas????
PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?
Where do the database management systems store data and how do u import them.
how we can call macros with in data step?
Do you need to combine data sets? How should you combine data sets– MERGE or SET statements in DATA steps,PROC APPEND,PROC SQL?
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.