<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: proc contents in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599871#M173256</link>
    <description>&lt;P&gt;As someone else mentioned you want to use the dictionary table instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set sashelp.vcolumn;

*keep libname memname name format informat label varnum;

&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;where memname = 'CLASS' and libname='SASHELP';&lt;/STRONG&gt;&lt;/FONT&gt;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Change only the WHERE statement and modify the KEEP statement, currently commented out, to include/exclude the variables of interest. You'll need to verify the names because I'm writing this off memory but it will work easier than PROC CONTENTS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the variable does not have a label, by default hte label name becomes the variable name. You could account for that by using the COALESCEC() function in your data step as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;displayLabel = coalescec(label, name);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80196"&gt;@sri1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am creating a dataset(out=dsname) for variable attributes (name,type,format,informat) with proc contents.&lt;/P&gt;
&lt;P&gt;Can you help me to fix the below&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;My output dataset shows variable labels instead of variable names .I need the output dataset to show default variable names.&lt;/LI&gt;
&lt;LI&gt;Formats associated with variable doesn't appear in dataset but appears in listing output.&lt;/LI&gt;
&lt;LI&gt;Can I get the varnum in ascending order in dataset instead of default without using proc sort.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Here is my code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents data=dsn out=o_dsn(keep=name type format informat varnum) noprint;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your solutions are highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2019 17:18:32 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-10-28T17:18:32Z</dc:date>
    <item>
      <title>proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599851#M173239</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating a dataset(out=dsname) for variable attributes (name,type,format,informat) with proc contents.&lt;/P&gt;&lt;P&gt;Can you help me to fix the below&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;My output dataset shows variable labels instead of variable names .I need the output dataset to show default variable names.&lt;/LI&gt;&lt;LI&gt;Formats associated with variable doesn't appear in dataset but appears in listing output.&lt;/LI&gt;&lt;LI&gt;Can I get the varnum in ascending order in dataset instead of default without using proc sort.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here is my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc contents data=dsn out=o_dsn(keep=name type format informat varnum) noprint;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solutions are highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599851#M173239</guid>
      <dc:creator>sri1</dc:creator>
      <dc:date>2019-10-28T16:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599852#M173240</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80196"&gt;@sri1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please show us what you have tried, and what the undesired results are.&amp;nbsp; Help us help you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599852#M173240</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-10-28T16:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599854#M173242</link>
      <description>&lt;P&gt;Agreed, you need to tell us more.&amp;nbsp; The program you supplied does not create any printed output.&amp;nbsp; So it's not clear what you are looking at.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just to answer a piece of your question, this is allowed:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents data=dsn out=o_dsn(keep=name type format informat) noprint &lt;FONT color="#FF0000"&gt;order=varnum&lt;/FONT&gt;;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599854#M173242</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-10-28T16:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599855#M173243</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;Thanks for your reply.The code I have put doesn't create any printed output but I have test the code with and without noprint option.&lt;/P&gt;&lt;P&gt;order=varnum doesn't sort the varnum in the output dataset (o_dsn)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:15:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599855#M173243</guid>
      <dc:creator>sri1</dc:creator>
      <dc:date>2019-10-28T16:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599860#M173248</link>
      <description>&lt;P&gt;by "doesn't create any printed output" I presume you mean the LST output.&amp;nbsp; But let us see the log, which is where SAS tells you what it thinks is going on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:17:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599860#M173248</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-10-28T16:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599861#M173249</link>
      <description>&lt;P&gt;Then you may have to switch gears.&amp;nbsp; Instead of PROC CONTENTS, use PROC SQL to extract the information from DICTIONARY.COLUMNS.&amp;nbsp; SQL supports an order by clause.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:18:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599861#M173249</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-10-28T16:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599862#M173250</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31461"&gt;@mkeintz&lt;/a&gt;&amp;nbsp; Yes it is listing output..The log doesn't show any warnings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 16:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599862#M173250</guid>
      <dc:creator>sri1</dc:creator>
      <dc:date>2019-10-28T16:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599869#M173254</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80196"&gt;@sri1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am creating a dataset(out=dsname) for variable attributes (name,type,format,informat) with proc contents.&lt;/P&gt;
&lt;P&gt;Can you help me to fix the below&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;My output dataset shows variable labels instead of variable names .I need the output dataset to show default variable names.&lt;/LI&gt;
&lt;LI&gt;Formats associated with variable doesn't appear in dataset but appears in listing output.&lt;/LI&gt;
&lt;LI&gt;Can I get the varnum in ascending order in dataset instead of default without using proc sort.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Here is my code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents data=dsn out=o_dsn(keep=name type format informat varnum) noprint;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your solutions are highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You are only keeping some of the information that PROC CONTENTS generates in the OUT= dataset because of the KEEP= dataset option that you are using.&amp;nbsp; You are keeping the NAME of the variable, but you are not keep the variable's LABEL. Which is the opposite of what you are saying in the text.&amp;nbsp; The OUT= dataset should be sorted by NAME. If you want it sorted by VARNUM add a PROC SORT step.&amp;nbsp; If you want to report that PROC CONTENTS produces to also be sorted by order then use the VARNUM option on the PROC statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class ;
  set sashelp.class (keep=name age);
  label name='Student Name';
run;
proc contents data=class out=want(keep=varnum name label type form: inform:) varnum;
run;
proc sort data=want;
  by varnum;
run;
proc print data=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;SAS 9.4 on WINDOWS

The CONTENTS Procedure

Data Set Name        WORK.CLASS                    Observations          19
Member Type          DATA                          Variables             2
Engine               V9                            Indexes               0
Created              10/28/2019 13:04:45           Observation Length    16
Last Modified        10/28/2019 13:04:45           Deleted Observations  0
Protection                                         Compressed            NO
Data Set Type                                      Sorted                NO
Label
Data Representation  WINDOWS_64
Encoding             wlatin1  Western (Windows)


                                     Engine/Host Dependent Information

Data Set Page Size          65536
Number of Data Set Pages    1
First Data Page             1
Max Obs per Page            4062
Obs in First Data Page      19
Number of Data Set Repairs  0
ExtendObsCounter            YES
Filename                    ....\_TD33560_AMRL20L6F1E4992_\class.sas7bdat
Release Created             9.0401M5
Host Created                X64_10PRO
Owner Name                  ...
File Size                   128KB
File Size (bytes)           131072


SAS 9.4 on WINDOWS

 The CONTENTS Procedure

         Variables in Creation Order

#    Variable    Type    Len    Label

1    Name        Char      8    Student Name
2    Age         Num       8


SAS 9.4 on WINDOWS

Obs   NAME   TYPE   VARNUM      LABEL       FORMAT   FORMATL   FORMATD   INFORMAT   INFORML   INFORMD

 1    Name     2       1     Student Name               0         0                    0         0
 2    Age      1       2                                0         0                    0         0

&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:09:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599869#M173254</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-28T17:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599871#M173256</link>
      <description>&lt;P&gt;As someone else mentioned you want to use the dictionary table instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set sashelp.vcolumn;

*keep libname memname name format informat label varnum;

&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;where memname = 'CLASS' and libname='SASHELP';&lt;/STRONG&gt;&lt;/FONT&gt;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Change only the WHERE statement and modify the KEEP statement, currently commented out, to include/exclude the variables of interest. You'll need to verify the names because I'm writing this off memory but it will work easier than PROC CONTENTS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the variable does not have a label, by default hte label name becomes the variable name. You could account for that by using the COALESCEC() function in your data step as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;displayLabel = coalescec(label, name);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/80196"&gt;@sri1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am creating a dataset(out=dsname) for variable attributes (name,type,format,informat) with proc contents.&lt;/P&gt;
&lt;P&gt;Can you help me to fix the below&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;My output dataset shows variable labels instead of variable names .I need the output dataset to show default variable names.&lt;/LI&gt;
&lt;LI&gt;Formats associated with variable doesn't appear in dataset but appears in listing output.&lt;/LI&gt;
&lt;LI&gt;Can I get the varnum in ascending order in dataset instead of default without using proc sort.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Here is my code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents data=dsn out=o_dsn(keep=name type format informat varnum) noprint;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your solutions are highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:18:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599871#M173256</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-28T17:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599884#M173259</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;I just want to make clear what I mean by&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My output dataset shows variable labels instead of variable names .I need the output dataset to show default variable names.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For example I use the following code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc contents data=sashelp.zipcode out=o_dsn(keep=name type format informat varnum) ;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My output dataset appears as below (labels appear as column headers instead of default names such as&amp;nbsp; "Variable Name" for "Name"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33448i7458059648CEF6BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the listing output below they are three formats but in the above dataset,formats doesn't appear.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33450i554A2379D587AF0D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope the above information helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599884#M173259</guid>
      <dc:creator>sri1</dc:creator>
      <dc:date>2019-10-28T17:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599886#M173261</link>
      <description>&lt;P&gt;Your question still appear a little muddled.&amp;nbsp; But I think I can clear up one thing for you.&lt;/P&gt;
&lt;P&gt;The FORMAT variable in the output dataset from PROC CONTENTS just holds the &lt;STRONG&gt;name&lt;/STRONG&gt; of the format. The part before the width.&amp;nbsp; The width and the decimal width are stored in two other numeric variables.&amp;nbsp; Since you did not include those two variables they are not appearing in your dataset.&amp;nbsp; &amp;nbsp;If you want to build up a full format specification that you could use in a FORMAT statement then you will need to piece them together again.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;length formatspec $43;
if formatd then formatspec=cats(format,formatl,'.',formatd);
else if formatl then formatspec=cats(format,formatl,'.');
else if format ne ' ' then formatspec=cats(format,'.');
else formatspec=' ';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Oct 2019 18:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599886#M173261</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-28T18:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599990#M173311</link>
      <description>&lt;P&gt;Use DICTIONARY.COLUMNS:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table o_dsn as
select name, type, format, informat,varnum
from dictionary.columns
where libname = 'SASHELP' and memname = 'ZIPCODE';
quit;

proc print data=o_dsn noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;PRE&gt;name           type    format    informat    varnum

ZIP            num      Z5.                     1  
X              num      11.6                    2  
Y              num      11.6                    3  
ZIP_CLASS      char                             4  
CITY           char                             5  
STATE          num                              6  
STATECODE      char                             7  
STATENAME      char                             8  
COUNTY         num                              9  
COUNTYNM       char                            10  
MSA            num                             11  
AREACODE       num                             12  
AREACODES      char                            13  
TIMEZONE       char                            14  
GMTOFFSET      num                             15  
DST            char                            16  
PONAME         char                            17  
ALIAS_CITY     char                            18  
ALIAS_CITYN    char                            19  
CITY2          char                            20  
STATENAME2     char                            21  
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 06:35:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-contents/m-p/599990#M173311</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-29T06:35:52Z</dc:date>
    </item>
  </channel>
</rss>

