From: Killer on
Hi,

Is there a way to extract the title of a page from its properties
using SAS?

Thanks,
KK
From: Frank DiIorio on
On Feb 15, 5:13 am, Killer <kk.ma...(a)gmail.com> wrote:
> Hi,
>
> Is there a way to extract the title of a page from its properties
> using SAS?
>
> Thanks,
> KK

You could use the SAS Dictionary Table TITLES or the SASHELP.VTITLE
view (the table can only be accessed in SQL, while the view is
available anywhere). Variables are
TYPE $1 T (title) or F (footnote)
NUMBER Title/footnote number
TEXT $256 Justification, color, etc. are removed, but macro variables
are resolved, so
title j=l c=red "This is left-justified and red" j=r "Run at
&sysdate.";
resolved to TEXT value of "This is left-justified and redRun at
15FEB2010"
From: Arthur Tabachneck on
KK,

If you want color and justification as well, just run the following
code:

proc goptions nolist footnote;
run;


HTH,
Art
-------------
On Feb 15, 5:13 am, Killer <kk.ma...(a)gmail.com> wrote:
> Hi,
>
> Is there a way to extract the title of a page from its properties
> using SAS?
>
> Thanks,
> KK
From: Killer on
On Feb 15, 7:28 pm, art...(a)NETSCAPE.NET (Arthur Tabachneck) wrote:
> KK,
>
> If you want color and justification as well, just run the following
> code:
>
> proc goptions nolist footnote;
> run;
>
> HTH,
> Art
> -------------
> On Feb 15, 5:13 am, Killer <kk.ma...(a)gmail.com> wrote:
>
>
>
> > Hi,
>
> > Is there a way to extract the title of a page from its properties
> > using SAS?
>
> > Thanks,
> > KK- Hide quoted text -
>
> - Show quoted text -

Hi,

Thank you,

I am not familiar with SQL for that matter. I am just a beginner.


From: Arthur Tabachneck on
KK,

While I think proc goptions will provide everything+ that you might want,
even beginners are authorized to use proc sql (in fact, you might find it
quite beneficial to learn).

What you might submit, in this case, is:

proc sql;
select *
from dictionary.titles
;
quit;

*or, if you wanted to write the titles to a file;

proc sql noprint;
create table titles as
select *
from dictionary.titles
;
quit;

HTH,
Art
---------
On Mon, 15 Feb 2010 08:29:21 -0800, Killer <kk.majji(a)GMAIL.COM> wrote:

>On Feb 15, 7:28 pm, art...(a)NETSCAPE.NET (Arthur Tabachneck) wrote:
>> KK,
>>
>> If you want color and justification as well, just run the following
>> code:
>>
>> proc goptions nolist footnote;
>> run;
>>
>> HTH,
>> Art
>> -------------
>> On Feb 15, 5:13 am, Killer <kk.ma...(a)gmail.com> wrote:
>>
>>
>>
>> > Hi,
>>
>> > Is there a way to extract the title of a page from its properties
>> > using SAS?
>>
>> > Thanks,
>> > KK- Hide quoted text -
>>
>> - Show quoted text -
>
>Hi,
>
>Thank you,
>
>I am not familiar with SQL for that matter. I am just a beginner.