<?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: What is Trace Keyword in QlikView in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732836#M1057480</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Screen Shot 10-01-14 at 12.39 PM.PNG.png" class="jive-image" src="/legacyfs/online/68032_Screen Shot 10-01-14 at 12.39 PM.PNG.png" /&gt;&lt;IMG alt="Screen Shot 10-01-14 at 12.39 PM 001.PNG.png" class="jive-image" src="/legacyfs/online/68060_Screen Shot 10-01-14 at 12.39 PM 001.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you use this Trace in between a long statement, you might not be able to see the output, because that gets executed fast and goes to next statement. If you want the see the output, better use &lt;STRONG&gt;Sleep&lt;/STRONG&gt; command to wait for sometime like:&lt;/P&gt;&lt;P&gt;Trace 'Here is your message';&lt;/P&gt;&lt;P&gt;Sleep 2000;&amp;nbsp;&amp;nbsp; // 2000 miliseconds&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2014 07:13:37 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-10-01T07:13:37Z</dc:date>
    <item>
      <title>What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732833#M1057477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell me what is TRACE Keyword and why it is used with Exmple.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 06:07:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732833#M1057477</guid>
      <dc:creator />
      <dc:date>2014-10-01T06:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732834#M1057478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From QlikView Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor1376"&gt;&lt;/A&gt;&lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;Trace&lt;/SPAN&gt;&lt;/H1&gt;&lt;P&gt;The &lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;trace&lt;/SPAN&gt; statement writes a &lt;SPAN class="Italic"&gt;string&lt;/SPAN&gt; to the &lt;SPAN class="Bold"&gt;Script Execution Progress&lt;/SPAN&gt; window and to the script log file, when used. &lt;/P&gt;&lt;P&gt;It is very useful for debugging purposes. Using $-expansions of variables that are calculated prior to the &lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;Trace&lt;/SPAN&gt; statement, you can customize the message.&lt;/P&gt;&lt;P&gt;The syntax is:&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN style="color: #ffffff; background-color: #3399ff;"&gt;trace&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; string&lt;/SPAN&gt; &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;trace&lt;/SPAN&gt; Main table loaded;&lt;/P&gt;&lt;P&gt;Let MyMessage = NoOfRows('MainTable') &amp;amp; ' rows in Main Table';&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;trace&lt;/SPAN&gt; $(MyMessage);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 06:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732834#M1057478</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-01T06:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732835#M1057479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashfaq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please elaborate the TRACE explanation..still i am confused ....Please attach some output of Trace keyword ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the below code :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE 'C:\Users\Sarfaraz.Sheikh\Desktop\Sarfaraz\TAT Data\COMPLAINS TAT DATA.xls' Loaded;&lt;/P&gt;&lt;P&gt;Let MyMassage=NoOfRows('COMPLAINS TAT DATA.xls') &amp;amp; 'rows in COMPLAINS TAT DATA';&lt;/P&gt;&lt;P&gt;TRACE $(MyMassage);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click on reload nothing is appearing or appeared ....what exactly happening after reload i am not understanding...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request you to please elaborate or attach some output here ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 07:03:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732835#M1057479</guid>
      <dc:creator />
      <dc:date>2014-10-01T07:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732836#M1057480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Screen Shot 10-01-14 at 12.39 PM.PNG.png" class="jive-image" src="/legacyfs/online/68032_Screen Shot 10-01-14 at 12.39 PM.PNG.png" /&gt;&lt;IMG alt="Screen Shot 10-01-14 at 12.39 PM 001.PNG.png" class="jive-image" src="/legacyfs/online/68060_Screen Shot 10-01-14 at 12.39 PM 001.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you use this Trace in between a long statement, you might not be able to see the output, because that gets executed fast and goes to next statement. If you want the see the output, better use &lt;STRONG&gt;Sleep&lt;/STRONG&gt; command to wait for sometime like:&lt;/P&gt;&lt;P&gt;Trace 'Here is your message';&lt;/P&gt;&lt;P&gt;Sleep 2000;&amp;nbsp;&amp;nbsp; // 2000 miliseconds&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 07:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732836#M1057480</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-10-01T07:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732837#M1057481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarfarz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a look at attached application.&lt;/P&gt;&lt;P&gt;Its used for debugging purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 07:16:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732837#M1057481</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-01T07:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732838#M1057482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Safaraz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To look at table names &amp;amp; numbers of rows in the gui , create a table with system fields &lt;EM&gt;$Table&lt;/EM&gt; &amp;amp; &lt;EM&gt;$Rows.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Oct 2014 11:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732838#M1057482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-19T11:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732839#M1057483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give an example of what your trying to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 07:11:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732839#M1057483</guid>
      <dc:creator />
      <dc:date>2015-04-28T07:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: What is Trace Keyword in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732840#M1057484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ASHFAQ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good explanation,&amp;nbsp; but the message flashed, where is the "log" located?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 14:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-Trace-Keyword-in-QlikView/m-p/732840#M1057484</guid>
      <dc:creator />
      <dc:date>2017-08-07T14:03:23Z</dc:date>
    </item>
  </channel>
</rss>

