<?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: Load Inline Quesstion in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669651#M449353</link>
    <description>&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&amp;nbsp; This gave me what I needed!&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2020 14:37:21 GMT</pubDate>
    <dc:creator>FrankC</dc:creator>
    <dc:date>2020-01-27T14:37:21Z</dc:date>
    <item>
      <title>Load Inline Quesstion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669042#M449330</link>
      <description>&lt;P&gt;I would like to create a simple audit table and store it as a qvd after each running of the application.&amp;nbsp; I would like to store all the table names and a count of rows.&amp;nbsp; I saw $Tables and $Rows.&amp;nbsp; &amp;nbsp;They work great when displaying in the application, but how can I use them with Inline?&lt;/P&gt;&lt;P&gt;thanks for your suggestions and help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:14:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669042#M449330</guid>
      <dc:creator>FrankC</dc:creator>
      <dc:date>2024-11-16T19:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load Inline Quesstion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669066#M449332</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use a script like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;DATAMODEL:&lt;BR /&gt;LOAD * INLINE [TABLE#];&amp;nbsp; // CREATE EMPTY TABLE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT face="courier new,courier"&gt;FOR t#=1 TO NoOfTables()&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; tn = TableName(t#-1)&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; IF tn &amp;lt;&amp;gt; 'DATAMODEL' THEN&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; nrows = NoOfRows(tn)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; fns = ''&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; FOR f#=1 TO NoOfFields(tn)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fn = FieldName(f#,tn)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fns = fns &amp;amp; '|' &amp;amp; fn&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; NEXT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; fns = Mid(fns,2,Len(fns));&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; DATAMODEL:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; CONCATENATE LOAD&amp;nbsp; // ADD ONE ROW FOR EACH TABLE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $(t#) AS TABLE#,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; '$(tn)' AS TABLENAME,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $(nrows) AS ROWS,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; '$(fns)' AS FIELDS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; &amp;nbsp; AUTOGENERATE 1;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&amp;nbsp; ENDIF&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;NEXT&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;DATE = Date(Now(),'YYYY-MM-DD-hh-mm');&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;STORE DATAMODEL INTO [D:\DATAMODEL_METADATA\DATAMODEL-$(DATE).QVD] (QVD);&lt;BR /&gt;DROP TABLE [DATAMODEL];&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 16:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669066#M449332</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2020-01-24T16:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Load Inline Quesstion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669651#M449353</link>
      <description>&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&amp;nbsp; This gave me what I needed!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 14:37:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Inline-Quesstion/m-p/1669651#M449353</guid>
      <dc:creator>FrankC</dc:creator>
      <dc:date>2020-01-27T14:37:21Z</dc:date>
    </item>
  </channel>
</rss>

