Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Determining most recently assigned title/s

Status
Not open for further replies.

eguva

Programmer
Jun 23, 2007
27
0
0
US
Hi,

Is there any way to get the value assigned to title statements. Say, I am including a program file with libnames, titles assigned.I have no control of the program file.I just include it. In the new program that I am writing, I want to determine programatically, the titles assigned and put them into macro variables.Does SAS store titles/footnotes in any system variables or can we get in in any dictionary or sashelp table?

Thanks,
Eguva
 
Hi equva,
Any time you want that sort of info, those V views are pretty good.
You can also access them directly as "DICTIONARY.TITLE". To get a list of all available ones use
Code:
proc sql;
  select *
  from dictionary.dictionaries
  ;
quit;
Enjoy.

Chris
Business Analyst, Code Monkey, Data Wrangler.
SAS Guru.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top