<?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: View defined but not seen in EG 4.2 or Management Console in Developers</title>
    <link>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9323#M2237</link>
    <description>Hello twocanbazza,&lt;BR /&gt;
A good question and that was/is indeed the problem. I am unable to register a VIEW based on a WORK table in the metadata.&lt;BR /&gt;
1. If I use EG 4.2 via Tools -&amp;gt; Update Library Metadata I get the error&lt;BR /&gt;
"No metadata objects found matching the specified URI".&lt;BR /&gt;
Odly, one of the three Views is registered and ready to use. (strange)&lt;BR /&gt;
&lt;BR /&gt;
2. If I use SAS OLAP Cube Studio -&amp;gt; Register tables and select the tables&lt;BR /&gt;
that are part of the library, I get the error "WORK.MygreatView.DATA does not exists."&lt;BR /&gt;
The table is then registered without any variables or data.&lt;BR /&gt;
&lt;BR /&gt;
Note, this all works fine if I register VIEWS that do --not-- select from the WORK library but as soon as the view select from the WORK library the whole thing causes problems.&lt;BR /&gt;
&lt;BR /&gt;
Why I use the WORK library? - I want to create prompt source tables that are filled depending on the user login (dynamic PROC SQL - identity driver properties) by a STP that executes as soon as the web report opens.</description>
    <pubDate>Tue, 15 Feb 2011 11:39:29 GMT</pubDate>
    <dc:creator>metalray</dc:creator>
    <dc:date>2011-02-15T11:39:29Z</dc:date>
    <item>
      <title>View defined but not seen in EG 4.2 or Management Console</title>
      <link>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9321#M2235</link>
      <description>Hello,&lt;BR /&gt;
I have created a view and can select from it as well but somehow it does not show up as an object when I use EG4.2 or the Management Console.&lt;BR /&gt;
&lt;BR /&gt;
create view Test_BASE.WORK_myway as select * from WORK.myway;&lt;BR /&gt;
&lt;BR /&gt;
select * from Test_BASE.WORK_myway;&lt;BR /&gt;
&lt;BR /&gt;
--result is displayed</description>
      <pubDate>Mon, 14 Feb 2011 10:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9321#M2235</guid>
      <dc:creator>metalray</dc:creator>
      <dc:date>2011-02-14T10:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: View defined but not seen in EG 4.2 or Management Console</title>
      <link>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9322#M2236</link>
      <description>Have you defined it in the Metadata?</description>
      <pubDate>Mon, 14 Feb 2011 19:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9322#M2236</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2011-02-14T19:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: View defined but not seen in EG 4.2 or Management Console</title>
      <link>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9323#M2237</link>
      <description>Hello twocanbazza,&lt;BR /&gt;
A good question and that was/is indeed the problem. I am unable to register a VIEW based on a WORK table in the metadata.&lt;BR /&gt;
1. If I use EG 4.2 via Tools -&amp;gt; Update Library Metadata I get the error&lt;BR /&gt;
"No metadata objects found matching the specified URI".&lt;BR /&gt;
Odly, one of the three Views is registered and ready to use. (strange)&lt;BR /&gt;
&lt;BR /&gt;
2. If I use SAS OLAP Cube Studio -&amp;gt; Register tables and select the tables&lt;BR /&gt;
that are part of the library, I get the error "WORK.MygreatView.DATA does not exists."&lt;BR /&gt;
The table is then registered without any variables or data.&lt;BR /&gt;
&lt;BR /&gt;
Note, this all works fine if I register VIEWS that do --not-- select from the WORK library but as soon as the view select from the WORK library the whole thing causes problems.&lt;BR /&gt;
&lt;BR /&gt;
Why I use the WORK library? - I want to create prompt source tables that are filled depending on the user login (dynamic PROC SQL - identity driver properties) by a STP that executes as soon as the web report opens.</description>
      <pubDate>Tue, 15 Feb 2011 11:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9323#M2237</guid>
      <dc:creator>metalray</dc:creator>
      <dc:date>2011-02-15T11:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: View defined but not seen in EG 4.2 or Management Console</title>
      <link>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9324#M2238</link>
      <description>I managed to register the tables in metadata with the following code:&lt;BR /&gt;
&lt;BR /&gt;
proc metalib;&lt;BR /&gt;
omr (library="Amylib");&lt;BR /&gt;
select(View1);&lt;BR /&gt;
report;&lt;BR /&gt;
run;&lt;BR /&gt;
 &lt;BR /&gt;
(the code generated by EG 4.2 is missing the SELECT line).</description>
      <pubDate>Tue, 15 Feb 2011 16:14:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/View-defined-but-not-seen-in-EG-4-2-or-Management-Console/m-p/9324#M2238</guid>
      <dc:creator>metalray</dc:creator>
      <dc:date>2011-02-15T16:14:53Z</dc:date>
    </item>
  </channel>
</rss>

