<?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 load in script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956058#M78830</link>
    <description>&lt;P&gt;hi everybody,&lt;/P&gt;
&lt;P&gt;i have a problem with the following script:&lt;/P&gt;
&lt;P&gt;ODBC CONNECT32 TO [HR-Assenze] (XUserId is KHGKaZFMbD, XPassword is FSGTOKVMBLbGVQJGQBMQTGD);&lt;/P&gt;
&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM "EW_BELTRAMI".dbo."Assenze_View";&lt;/P&gt;
&lt;P&gt;LOAD&lt;BR /&gt;MonthStart(inizio, 0) AS MESEINIZIO,&lt;BR /&gt;MonthEnd (fine, 0) AS MESEFINE,&lt;BR /&gt;Today AS Oggi;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have no problem until the LOAD command. i don't where i err, but i don't get the "MESEINIZIO" "MESEFINE" and "OGGI" as new fields.&lt;/P&gt;
&lt;P&gt;please help.&lt;/P&gt;
&lt;P&gt;thank you.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 22:44:15 GMT</pubDate>
    <dc:creator>maxronny</dc:creator>
    <dc:date>2024-11-15T22:44:15Z</dc:date>
    <item>
      <title>load in script</title>
      <link>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956058#M78830</link>
      <description>&lt;P&gt;hi everybody,&lt;/P&gt;
&lt;P&gt;i have a problem with the following script:&lt;/P&gt;
&lt;P&gt;ODBC CONNECT32 TO [HR-Assenze] (XUserId is KHGKaZFMbD, XPassword is FSGTOKVMBLbGVQJGQBMQTGD);&lt;/P&gt;
&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM "EW_BELTRAMI".dbo."Assenze_View";&lt;/P&gt;
&lt;P&gt;LOAD&lt;BR /&gt;MonthStart(inizio, 0) AS MESEINIZIO,&lt;BR /&gt;MonthEnd (fine, 0) AS MESEFINE,&lt;BR /&gt;Today AS Oggi;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have no problem until the LOAD command. i don't where i err, but i don't get the "MESEINIZIO" "MESEFINE" and "OGGI" as new fields.&lt;/P&gt;
&lt;P&gt;please help.&lt;/P&gt;
&lt;P&gt;thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:44:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956058#M78830</guid>
      <dc:creator>maxronny</dc:creator>
      <dc:date>2024-11-15T22:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: load in script</title>
      <link>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956064#M78831</link>
      <description>&lt;P&gt;The LOAD should be on top of the SQL, like this:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthStart(inizio, 0) AS MESEINIZIO,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MonthEnd (fine, 0) AS MESEFINE,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Today(1) AS Oggi;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SQL SELECT *&lt;BR /&gt;FROM "EW_BELTRAMI".dbo."Assenze_View";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 17:21:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956064#M78831</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2022-07-14T17:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: load in script</title>
      <link>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956065#M78832</link>
      <description>&lt;P&gt;Looks like you're got things in the wrong order. Unless specified otherwise, a Load will read from the query directly *below* it, not the one above. You would also probably want to:&lt;/P&gt;
&lt;P&gt;Load *,&amp;nbsp;MonthStart(inizio, 0) AS MESEINIZIO,&lt;BR /&gt;MonthEnd (fine, 0) AS MESEFINE,&lt;BR /&gt;Today AS Oggi;&lt;/P&gt;
&lt;P&gt;As you will otherwise get only these three fields with none of the original ones.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 17:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/load-in-script/m-p/1956065#M78832</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-07-14T17:22:12Z</dc:date>
    </item>
  </channel>
</rss>

