<?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 help with Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852549#M298911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry Manish, this is same as what I have written in the original post. I'll be back with some data, I know its pretty hard to ask these things without data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; as peter suggested,&amp;nbsp; because of that outer&amp;nbsp; join i'm facing this issue, but I tried to perform Noconcatenate here but its throwing illegal combination of prefixes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jul 2015 17:12:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-07-10T17:12:27Z</dc:date>
    <item>
      <title>need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852543#M298905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;join (GlobalData)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;load distinct Vendor,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;upper(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Vendor&lt;/SPAN&gt;) as SAccess,&lt;/P&gt;&lt;P&gt;1 as All &lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GlobalData&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;join (GlobalData)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;load distinct Vendor,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;upper(left(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Vendor&lt;/SPAN&gt;, 4)) as SAccess ,&lt;/P&gt;&lt;P&gt;4 as All&lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GlobalData&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;join (&lt;SPAN style="font-size: 13.3333330154419px;"&gt;GlobalData&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;load distinct &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Vendor&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;upper(left(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Vendor&lt;/SPAN&gt;,5)) as SAccess ,&lt;/P&gt;&lt;P&gt;5 as All&lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GlobalData&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;here when I take list box for All, I see only 1 is getting selected and the rest 4 &amp;amp; 5 were greyed out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 16:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852543#M298905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T16:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852544#M298906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide data please !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 16:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852544#M298906</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-10T16:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852545#M298907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is because you cannot join the same fields over and over again to the same table. In this code, you try to create columns All and SAccess three times in a row. The first time you succeed, creating a column SAccess and a column All containing value 1 for all rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second and third (ouiter) joins will try to use all fields as matching fields (because they all do exist in the table), producing no matches at all since the All field contains 1 all the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you'ld better explain what you plan to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 16:37:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852545#M298907</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-07-10T16:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852546#M298908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure Peter, I have table&amp;nbsp; called globaldata, I' trying to apply section based on Vendor where 1 is to show everything , 4 and 5 is show limited data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 16:55:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852546#M298908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T16:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852547#M298909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GlobalData:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; Vendor&lt;/P&gt;&lt;P&gt;&amp;nbsp; ABCDE&lt;/P&gt;&lt;P&gt;&amp;nbsp; XYZMN&lt;/P&gt;&lt;P&gt;&amp;nbsp; PQRST&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join (GlobalData)&lt;/P&gt;&lt;P&gt;Load Distinct Vendor, Upper(Vendor) as SAccess, 1 as All Resident GlobalData;&lt;/P&gt;&lt;P&gt;join (GlobalData)&lt;/P&gt;&lt;P&gt;Load Distinct Vendor, Upper(Left(Vendor,2)) as SAccess, 2 as All Resident GlobalData;&lt;/P&gt;&lt;P&gt;join (GlobalData)&lt;/P&gt;&lt;P&gt;Load Distinct Vendor, Upper(Left(Vendor,4)) as SAccess, 4 as All Resident GlobalData;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 16:58:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852547#M298909</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-10T16:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852548#M298910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you're doing OUTER JOIN is that what you wanted to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why not LEFT JOIN?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 17:00:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852548#M298910</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-07-10T17:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852549#M298911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry Manish, this is same as what I have written in the original post. I'll be back with some data, I know its pretty hard to ask these things without data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; as peter suggested,&amp;nbsp; because of that outer&amp;nbsp; join i'm facing this issue, but I tried to perform Noconcatenate here but its throwing illegal combination of prefixes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 17:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852549#M298911</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T17:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852550#M298912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are joining, no need of noconcatenate.&lt;/P&gt;&lt;P&gt;I have provided script to show you that something wrong with your data or something being missed as my sample code is working..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 17:19:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852550#M298912</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-10T17:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852551#M298913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish, could you pls post the sample qvw file so that I'll look into that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 18:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852551#M298913</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T18:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852552#M298914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have provided whole sample script which I used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 18:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852552#M298914</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-10T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852553#M298915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John, &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;forget about my previous post. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Outer JOIN is essential to your operation as you will use it to concatenate, but it will only work well in a specific circumstance: you can OUTER JOIN to a table that contains (many) other field values but the new records will all have NULL values in the other fields (note that this is based on some guesswork as you're not posting the remainder of your script.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manish's example works as a true concatenate because the JOINs do load all field values that were in the original table in the first place. Meaning no NULL values anywhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To see what I mean, open Table Viewer (Ctrl-T) and check the contents of table GlobalData.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note that every operation like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[LEFT|RIGHT|INNER|OUTER] JOIN (GlobalData)&lt;/P&gt;&lt;P&gt;LOAD DISTINCT ...&lt;/P&gt;&lt;P&gt;RESIDENT GlobalData;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will make GlobalData DISTINCT too, as the DISTINCT keyword propagates to the Target table as well. See the JOIN help topic in QV Desktop Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 07:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852553#M298915</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-07-13T07:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: need help with Script</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852554#M298916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Peter, I'll try this as suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 06:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-with-Script/m-p/852554#M298916</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-15T06:29:46Z</dc:date>
    </item>
  </channel>
</rss>

