<?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: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613834#M685265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since DIM_ADMIN_DATA&amp;nbsp; &amp;amp; DIM_USER_DATA tables have same columns, data from DIM_ADMIN_DATA table is already concatenated with DIM_USER_DATA. So you will not find DIM_ADMIN_DATA table any more. Concatenate operation is not required at all in Section Access block.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Feb 2014 05:05:10 GMT</pubDate>
    <dc:creator>manojkulkarni</dc:creator>
    <dc:date>2014-02-06T05:05:10Z</dc:date>
    <item>
      <title>Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613832#M685263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script. Please correct the Script if any syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting ERROR:"&lt;EM&gt;&lt;STRONG&gt;Table not found CONCATENATE LOAD * RESIDENT DIM_ADMIN_DATA&lt;/STRONG&gt;&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' END AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_ADMIN_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 04:50:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613832#M685263</guid>
      <dc:creator />
      <dc:date>2014-02-06T04:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613833#M685264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;QV implicitly concatenates the two tables as it has same columns. So it doesnot find the 2nd table.&lt;/P&gt;&lt;P&gt;Still if you want to do concatenate explicitly, try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' END AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;-Shruti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 04:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613833#M685264</guid>
      <dc:creator />
      <dc:date>2014-02-06T04:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613834#M685265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since DIM_ADMIN_DATA&amp;nbsp; &amp;amp; DIM_USER_DATA tables have same columns, data from DIM_ADMIN_DATA table is already concatenated with DIM_USER_DATA. So you will not find DIM_ADMIN_DATA table any more. Concatenate operation is not required at all in Section Access block.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:05:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613834#M685265</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2014-02-06T05:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613835#M685266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;if two table has same fieldname then qlikview automatically concatenate into one table.&lt;/P&gt;&lt;P&gt;so your Dim_Admin_Date merge in Dim_User_Date.&lt;/P&gt;&lt;P&gt;so when you load Dim_Adimen_Data by Resident load, then table not found error found.&lt;/P&gt;&lt;P&gt;for this try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' END AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_ADMIN_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="jive-content-footer-item"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613835#M685266</guid>
      <dc:creator />
      <dc:date>2014-02-06T05:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613836#M685268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vishwaranjan Kumar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now It is Clear for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:17:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613836#M685268</guid>
      <dc:creator />
      <dc:date>2014-02-06T05:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613837#M685270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;After using Above Query, When I try to lon in with any Employee name It is keep asking USERID and after 3 attempt it is denied QVW file. Could you please suggest why it is happening. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I log in with ADMIN user and password it is working expected and with ADMIN userID i am getting "$Syn 1 = ACCESS+USERID+PASSWORD+_SP_KEY" when reloading the data. I did not understand message "$Syn 1 = ACCESS+USERID+PASSWORD+_SP_KEY"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this query:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'USER' END AS ACCESS,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;CONCATENATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT DIM_ADMIN_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613837#M685270</guid>
      <dc:creator />
      <dc:date>2014-02-06T05:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613838#M685273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;section access use for security on application and data.&lt;/P&gt;&lt;P&gt;in your case when you open the application the ask&lt;/P&gt;&lt;P&gt;UserId and&lt;/P&gt;&lt;P&gt;Password&lt;/P&gt;&lt;P&gt;bydefault it gives 3 chaces, if you write username or password three times wrong then access is denied for open application.&lt;/P&gt;&lt;P&gt;so write-&lt;/P&gt;&lt;P&gt;Userid = ADMIN&lt;/P&gt;&lt;P&gt;Password = ADMIN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613838#M685273</guid>
      <dc:creator />
      <dc:date>2014-02-06T05:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613839#M685276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Question is If I enter an Employee name who is an user (as definided in below Query) and should see data belongs to him...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'USER' END AS ACCESS,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not allowing to open the QVW file other than ADMIN User. why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Below query is working expected also for USER other than SHIVENDOO KUMAR and RAM KUMAR (These both are ADMIN as defined below.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;IF(MATCH([EMP NAME],'SHIVENDOO KUMAR','RAM KUMAR'),'ADMIN','USER') AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Another Problem&lt;/STRONG&gt;&lt;/SPAN&gt; I have seen. Both these Tables &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DIM_USER_DATA&lt;/SPAN&gt; and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DIM_ADMIN_DATA are getting appeared in Selection list. Actually I don't want to show then to end users So I tried adding &lt;STRONG&gt;&lt;EM&gt;SET HidePrefix = '_'; and _ before tables like _&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DIM_USER_DATA&lt;/SPAN&gt; and _&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DIM_ADMIN_DATA but still these tables are getting displayed in selection list. I want to know how can I hide these tables?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 05:55:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613839#M685276</guid>
      <dc:creator />
      <dc:date>2014-02-06T05:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613840#M685278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your query what is 'USER'END indicates ? because Access Type will always either USER or ADMIN&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;'USER' END&lt;/STRONG&gt; AS ACCESS,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:34:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613840#M685278</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2014-02-06T06:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613841#M685279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manoj,&lt;/P&gt;&lt;P&gt;Sorry. That is copy past mistake. I checked code and code is like below:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;'USER' &lt;/STRONG&gt; AS ACCESS,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 06:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613841#M685279</guid>
      <dc:creator />
      <dc:date>2014-02-06T06:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613842#M685281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;&lt;STRONG&gt;This does not work (It is not allowing other that ADMIN USER to access QVW)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_ADMIN_DATA;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;&lt;STRONG&gt;This does not work: (Not Allowing any User to access QVW even for ADMIN it is failing)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_ADMIN_DATA;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;&lt;STRONG&gt;But this is working as expected and It is also not showing DIM_USER_DATA to user (In Selection list) as it is under Section Access;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;DIM_USER_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;'USER' AS ACCESS,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS USERID,&lt;/P&gt;&lt;P&gt;[EMP NAME] AS PASSWORD,&lt;/P&gt;&lt;P&gt;EMP_KEY AS _EMP_KEY&lt;/P&gt;&lt;P&gt;FROM DIM_EMP_DATA.QVD (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;//NOCONCATENATE&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;//CONCATENATE&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;//LOAD *&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;//RESIDENT DIM_ADMIN_DATA;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:10:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613842#M685281</guid>
      <dc:creator />
      <dc:date>2014-02-06T07:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613843#M685283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls try below code, it is working for both access type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, MANOJ, MANOJ, 12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, EMP1, EMP1, 13&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp; DIM_ADMIN_DATA:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, _EMP_KEY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp; ADMIN,&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STAR is *; &lt;/P&gt;&lt;P&gt;Section Access;&amp;nbsp; /* Start section access script */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;RESIDENT DIM_USER_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application; /* End section access script */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613843#M685283</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2014-02-06T07:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Concatenate Data from 2 in memory table but throwing error Table not found. Please see below Script.</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613844#M685284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hide prefix will work only for fields. Below content from Qlikview help file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1070"&gt;&lt;/A&gt;&lt;A name="HidePrefix"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;HidePrefix&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;All field names beginning with this text string will be hidden in the same manner as the system fields. A user-defined variable. &lt;/STRONG&gt;&lt;/P&gt;&lt;P class="example"&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;STRONG&gt;set HidePrefix='_' ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this statement is used, the field names beginning with an underscore will not be shown in the field name lists when the system fields are hidden&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 07:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-Concatenate-Data-from-2-in-memory-table-but-throwing/m-p/613844#M685284</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2014-02-06T07:21:34Z</dc:date>
    </item>
  </channel>
</rss>

