forked from IU-Data-Management/SAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateAuditDataset.sas
40 lines (27 loc) · 981 Bytes
/
CreateAuditDataset.sas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Name: CreateAuditDataset
Description: Creates a dataset containing useful
documentation information that can be exported to
a spreadsheet.
Type: Documentation
Arguments: 1. AuditDataset = the name you would like the
dataset to have. Will have ProgramName,
CreatedTime, User, and Computer Variables.
Other Inputs: <none>
Output: 1. The specified "AuditDataset"
Usage Notes: <none>
Calls macros: 1. GetProgramName
History: Date Init Comments
11/11/2008 MAS Creation
04/08/2009 MAS Added Computer variable.
*/
%Macro CreateAuditDataset(AuditDataset);
Data &AuditDataset.;
format ProgramName $500. CreatedTime datetime20.
User Computer $100.;
ProgramName = "%GetProgramName";
CreatedTime = datetime();
user = "%sysget(username)";
Computer = "%sysget(computername)";
run;
%mend;