<?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: &amp;quot;File Not Found&amp;quot; in Resident Load data even though the Table Exists in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527867#M107451</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/347989"&gt;@Elasimson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Interesting question.&lt;/P&gt;&lt;P&gt;It looks like there's an issue while loading your&amp;nbsp;&lt;STRONG&gt;downtimes&amp;nbsp;&lt;/STRONG&gt;table.&lt;/P&gt;&lt;P&gt;Could you add a row count after the table loads?&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LET vdowntimesRows = NoOfRows('downtimes');
TRACE vdowntimesRows = $(vdowntimesRows);&lt;/LI-CODE&gt;&lt;P&gt;That way you can troubleshoot if the table exists and has data after your initial load.&lt;/P&gt;&lt;P&gt;On a separate note, I had a script issue in the past caused by previous script sections. Would you try moving this piece of code to a brand new application, and let it run? That will help isolate the issue and assist in troubleshooting.&lt;/P&gt;</description>
    <pubDate>Wed, 20 Aug 2025 14:08:56 GMT</pubDate>
    <dc:creator>hugo_andrade</dc:creator>
    <dc:date>2025-08-20T14:08:56Z</dc:date>
    <item>
      <title>"File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527815#M107440</link>
      <description>&lt;P&gt;Im facing a issue while working in the Qlik Analytics on my script . Im getting an error :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H6 class="MuiTypography-root MuiTypography-subtitle1 css-ib4pij"&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;The following error occurred:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;Field 'downtimes_start_ts' not found&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H6&gt;
&lt;P&gt;When trying to cretae a Resident Load from a table. However the table is already loaded in the script and i can see the data is the Load Table before i use the Resident Call.&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;My Script :&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;downtimes:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;host_name,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;comment as downtimes_comment,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;author as downtimes_author,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Num(scheduled_start_time) as downtimes_start_epoch,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Num(scheduled_end_time) as downtimes_end_epoch,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Timestamp(start_time/ 1000 / 86400 + 25569) as downtimes_start_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Timestamp(end_time/ 1000 / 86400 + 25569) as downtimes_end_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;has_been_cancelled,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(WildMatch(lower(trim(SubField(host_name, '.', 1))), 'bsux*', 'bsuh*', 'tlux*'), 'AIX',&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(WildMatch(lower(trim(SubField(host_name, '.', 1))), 'bsuo*'), 'iSeries',&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(WildMatch(lower(trim(SubField(host_name, '.', 1))), 'bsul*', 'fsdebsul*'), 'Linux',&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(WildMatch(lower(trim(SubField(host_name, '.', 1))), 'bsse*', 'fsdebsse*'), 'Windows',&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(WildMatch(lower(trim(SubField(host_name, '.', 1))), 'sap*', 'siem*', 'ora*', 'hdb*'), 'Application',&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;'Unknown'))))) as downtimes_os_type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;FROM [lib://IH-IO Infrastructure Reporting - SSBI (Shared):DataFiles/downtimes_1.csv]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;(txt, codepage is 28591, embedded labels, delimiter is ',', msq);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;downtime_monthly_segments:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;host_name,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_start_epoch,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_end_epoch,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_start_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_end_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_comment,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_author,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Date(AddMonths(MonthStart(downtimes_start_ts), IterNo() - 1)) as month,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RangeMax(downtimes_start_ts, Date(AddMonths(MonthStart(downtimes_start_ts), IterNo() - 1))) as downtime_monthly_segment_start_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RangeMin(downtimes_end_ts, Date(AddMonths(MonthStart(downtimes_start_ts), IterNo()))) as downtime_monthly_segment_end_ts,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;(RangeMin(downtimes_end_ts, Date(AddMonths(MonthStart(downtimes_start_ts), IterNo()))) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;- RangeMax(downtimes_start_ts, Date(AddMonths(MonthStart(downtimes_start_ts), IterNo() - 1)))) * 24 * 60 * 60 as downtime_monthly_segment_duration_sec,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;downtimes_comment as downtime_monthly_comment&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;RESIDENT downtimes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;WHILE Date(AddMonths(MonthStart(downtimes_start_ts), IterNo() - 1)) &amp;lt; MonthStart(downtimes_end_ts);&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 08:19:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527815#M107440</guid>
      <dc:creator>Elasimson</dc:creator>
      <dc:date>2025-08-20T08:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527854#M107449</link>
      <description>&lt;P&gt;You can try replacing the while statement with something else.&lt;/P&gt;&lt;P&gt;Maybe a where statement will do the trick.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 12:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527854#M107449</guid>
      <dc:creator>adilio_silva</dc:creator>
      <dc:date>2025-08-20T12:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527857#M107450</link>
      <description>&lt;P&gt;There are various reasons possible, for example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;any qualifying in the script&lt;/LI&gt;&lt;LI&gt;any aliasing to the fields&lt;/LI&gt;&lt;LI&gt;the field or the table is dropped before&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Beside this you may not need this monthly table else creating these information already within the source-load with a preceding-load, like:&lt;/P&gt;&lt;P&gt;load *, Expr3 as Month while Start + iterno() &amp;lt;= End;&lt;BR /&gt;load *, Expr1 as Start, Expr2 as End from csv;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 12:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527857#M107450</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-08-20T12:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527867#M107451</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/347989"&gt;@Elasimson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Interesting question.&lt;/P&gt;&lt;P&gt;It looks like there's an issue while loading your&amp;nbsp;&lt;STRONG&gt;downtimes&amp;nbsp;&lt;/STRONG&gt;table.&lt;/P&gt;&lt;P&gt;Could you add a row count after the table loads?&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LET vdowntimesRows = NoOfRows('downtimes');
TRACE vdowntimesRows = $(vdowntimesRows);&lt;/LI-CODE&gt;&lt;P&gt;That way you can troubleshoot if the table exists and has data after your initial load.&lt;/P&gt;&lt;P&gt;On a separate note, I had a script issue in the past caused by previous script sections. Would you try moving this piece of code to a brand new application, and let it run? That will help isolate the issue and assist in troubleshooting.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 14:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527867#M107451</guid>
      <dc:creator>hugo_andrade</dc:creator>
      <dc:date>2025-08-20T14:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527916#M107466</link>
      <description>&lt;P&gt;Try this checks&amp;nbsp;&lt;/P&gt;&lt;P&gt;TRACE Fields in downtimes: $(TableNumber('downtimes'));&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;Load below statement to check which columns being created&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First 10 Load * Resident downtimes;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And one more thing can you check&amp;nbsp;&lt;/P&gt;&lt;P&gt;the base fields (start_time, end_time)&amp;nbsp; exist in your CSV or not&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 18:09:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527916#M107466</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-08-20T18:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527938#M107471</link>
      <description>&lt;P&gt;It looks like the &lt;STRONG&gt;issue is not with a missing column&lt;/STRONG&gt; but rather with an &lt;STRONG&gt;improper use&lt;/STRONG&gt; of the DO...WHILE loop.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/347989"&gt;@Elasimson&lt;/a&gt;&amp;nbsp;what are you trying to do with the DO...WHILE loop?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 23:42:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527938#M107471</guid>
      <dc:creator>howdash</dc:creator>
      <dc:date>2025-08-20T23:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527971#M107473</link>
      <description>&lt;P&gt;It's not an external do-while-loop as a control-statement on the outside from any loads/statements else an inner-load-loop calling each record n times (fixed or dynamically calculated).&lt;/P&gt;&lt;P&gt;It's a very powerful feature which could be also used several times and/or combined with autogenerate and/or subfield() within preceding-chains to create generic data in a very performant way.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 06:02:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527971#M107473</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-08-21T06:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: "File Not Found" in Resident Load data even though the Table Exists</title>
      <link>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527987#M107475</link>
      <description>&lt;P&gt;Shouldn't be&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;FONT face="courier new,courier"&gt;WHILE Date(AddMonths(MonthStart(downtimes_start_ts), IterNo() - 1)) &lt;U&gt;&amp;lt;&lt;STRONG&gt;=&lt;/STRONG&gt;&lt;/U&gt; MonthStart(downtimes_end_ts);&lt;/FONT&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 08:33:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/quot-File-Not-Found-quot-in-Resident-Load-data-even-though-the/m-p/2527987#M107475</guid>
      <dc:creator>Adam_Romanowski</dc:creator>
      <dc:date>2025-08-21T08:33:31Z</dc:date>
    </item>
  </channel>
</rss>

