<?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: Applying labels to a SAS Visual Analytics LASR table in code in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504255#M11279</link>
    <description>&lt;P&gt;That code will update&amp;nbsp;the metadata column "Description".&lt;/P&gt;</description>
    <pubDate>Mon, 15 Oct 2018 11:23:16 GMT</pubDate>
    <dc:creator>alexal</dc:creator>
    <dc:date>2018-10-15T11:23:16Z</dc:date>
    <item>
      <title>Applying labels to a SAS Visual Analytics LASR table column labels in code</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504242#M11275</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have my labels stored in a macrovariable. I want to apply them to my LASR table but i'm receiving an error.&lt;/P&gt;
&lt;P&gt;Do i have to change the assigning of my library? Or are there other possibilties? I prefer not to do a datastep.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc datasets library=&amp;amp;lasrLibref;&lt;BR /&gt; modify &amp;amp;outtable;&lt;BR /&gt; label &amp;amp;label_sql_dataset;&lt;BR /&gt; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Update access is not supported for file KS1BU01L.TEST_1510_1149.DATA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504242#M11275</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2018-10-15T11:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Applying labels to a SAS Visual Analytics LASR table in code</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504249#M11277</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19791"&gt;@Filipvdr&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to use metadata_setattr function, because you need to update a metadata entry for that table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
rc=metadata_setattr("omsobj:PhysicalTable?@Id='&lt;STRONG&gt;&amp;lt;TABLE_ID&amp;gt;&lt;/STRONG&gt;'","Desc","This is a new label");
put rc=;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Oct 2018 10:54:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504249#M11277</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2018-10-15T10:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Applying labels to a SAS Visual Analytics LASR table in code</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504251#M11278</link>
      <description>&lt;P&gt;Is your code for column label? Or for the table label?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504251#M11278</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2018-10-15T11:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Applying labels to a SAS Visual Analytics LASR table in code</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504255#M11279</link>
      <description>&lt;P&gt;That code will update&amp;nbsp;the metadata column "Description".&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:23:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504255#M11279</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2018-10-15T11:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Applying labels to a SAS Visual Analytics LASR table in code</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504256#M11280</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've solved it with putting the labels in my datastep statement which will load the data to hadoop from SQL database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* upload to hadoop with labels */&lt;BR /&gt; data &amp;amp;hdfsLibref..&amp;amp;outtable (/*debug optie: logupdate=yes*/ blocksize=64M label="&amp;amp;tableDescr.");&lt;BR /&gt; set &amp;amp;_input;&lt;BR /&gt; label &amp;amp;label_sql_dataset;&lt;BR /&gt; run;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Oct 2018 11:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Applying-labels-to-a-SAS-Visual-Analytics-LASR-table-column/m-p/504256#M11280</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2018-10-15T11:28:22Z</dc:date>
    </item>
  </channel>
</rss>

