<?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 Incremental load Issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-Issue/m-p/60499#M774318</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm dumping an excel file every week on Saturday. These files will have this naming convention: "ALL_OPEN_AR_YYYYMMDD" &lt;/P&gt;&lt;P&gt;This means that there will be 4 files a month that I'm looking to incrementally load and combine into one QVD. It appears that my script is looking for the specific dates and when the file name isn't there, it errors and stops loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping I can tell it to grab all files &lt;SPAN style="text-decoration: underline;"&gt;within&lt;/SPAN&gt; vFromDate and vToDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;or tell it to skip 6 days for each load date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;(Must_Include=[lib://Revenue Cycle Dev/ExternalData/Includes\Rev_Cycle_QVD_Builder2_Include.txt]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET external_tablename = Subfield(SubField(DocumentTitle(),'_L1_',1),'XLS.', -1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwFullQVDName = '$(EXT_L1_Path)XLS.$(external_tablename).qvd';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Let vFromDate = Date(MonthName(AddMonths(Today(),-12)),'YYYYMMDD');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vToDate = Date(Today(),'YYYYMMDD');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Set vQVDLibraryAndFolder = 'lib://Revenue Cycle Dev/ExternalData\';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Set vQVDFileNameWithoutDateSuffix = 'ALL_OPEN_AR';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;TempPartitionCalendar:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Load Distinct&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date((TempDate), 'YYYYMMDD') As PartitionYearMonth;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Load&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date(minDate + IterNo()) As TempDate&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;While minDate + IterNo() &amp;lt;= maxDate;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Load&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date#('$(vFromDate)','YYYYMMDD') as minDate,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date#('$(vToDate)','YYYYMMDD') as maxDate&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;AUTOGENERATE (1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;For vIndex = 1 to FieldValueCount('PartitionYearMonth')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vYearMonthSuffix = FieldValue('PartitionYearMonth',$(vIndex));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vQVDSource = '$(vQVDLibraryAndFolder)$(vQVDFileNameWithoutDateSuffix)_$(vYearMonthSuffix).xlsx';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;// Load Data Source Data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET execution_start = Now();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;$(external_tablename):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LOAD [Patient Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [HAR],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Reposted No New Claim],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Last Invoice #],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [CPT Code],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Ins Bal],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [AR Amount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Payer Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Plan Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ NAME] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;FROM [$(vQVDSource)]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LOAD [Patient Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [HAR],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Reposted No New Claim],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Last Invoice #],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [CPT Code],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Ins Bal],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [AR Amount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Payer Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Plan Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ NAME]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;FROM [$(vQVDSource)]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;(ooxml, embedded labels, table is Sheet2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;// Stores Data Source into a QVD File&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwWriteQVDStartDT = Now();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;STORE [$(external_tablename)] INTO [$(_fwFullQVDName)] (qvd);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;DROP TABLE [$(external_tablename)];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;DROP TABLE [TempPartitionCalendar];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwLastRun = Today();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Exit Script;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Incremental load Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-Issue/m-p/60499#M774318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm dumping an excel file every week on Saturday. These files will have this naming convention: "ALL_OPEN_AR_YYYYMMDD" &lt;/P&gt;&lt;P&gt;This means that there will be 4 files a month that I'm looking to incrementally load and combine into one QVD. It appears that my script is looking for the specific dates and when the file name isn't there, it errors and stops loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping I can tell it to grab all files &lt;SPAN style="text-decoration: underline;"&gt;within&lt;/SPAN&gt; vFromDate and vToDate&amp;nbsp; &lt;/P&gt;&lt;P&gt;or tell it to skip 6 days for each load date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;(Must_Include=[lib://Revenue Cycle Dev/ExternalData/Includes\Rev_Cycle_QVD_Builder2_Include.txt]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET external_tablename = Subfield(SubField(DocumentTitle(),'_L1_',1),'XLS.', -1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwFullQVDName = '$(EXT_L1_Path)XLS.$(external_tablename).qvd';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Let vFromDate = Date(MonthName(AddMonths(Today(),-12)),'YYYYMMDD');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vToDate = Date(Today(),'YYYYMMDD');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Set vQVDLibraryAndFolder = 'lib://Revenue Cycle Dev/ExternalData\';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Set vQVDFileNameWithoutDateSuffix = 'ALL_OPEN_AR';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;TempPartitionCalendar:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Load Distinct&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date((TempDate), 'YYYYMMDD') As PartitionYearMonth;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Load&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date(minDate + IterNo()) As TempDate&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;While minDate + IterNo() &amp;lt;= maxDate;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Load&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date#('$(vFromDate)','YYYYMMDD') as minDate,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; Date#('$(vToDate)','YYYYMMDD') as maxDate&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;AUTOGENERATE (1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;For vIndex = 1 to FieldValueCount('PartitionYearMonth')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vYearMonthSuffix = FieldValue('PartitionYearMonth',$(vIndex));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;Let vQVDSource = '$(vQVDLibraryAndFolder)$(vQVDFileNameWithoutDateSuffix)_$(vYearMonthSuffix).xlsx';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;// Load Data Source Data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET execution_start = Now();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;$(external_tablename):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LOAD [Patient Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [HAR],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Reposted No New Claim],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Last Invoice #],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [CPT Code],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Ins Bal],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [AR Amount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Payer Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Plan Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ NAME] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;FROM [$(vQVDSource)]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LOAD [Patient Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [HAR],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Reposted No New Claim],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Last Invoice #],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Dept Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [CPT Code],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Ins Bal],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [AR Amount],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Payer Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [Current Plan Name],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ ID],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt; [FOLLOW UP WQ NAME]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;FROM [$(vQVDSource)]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;(ooxml, embedded labels, table is Sheet2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;// Stores Data Source into a QVD File&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwWriteQVDStartDT = Now();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;STORE [$(external_tablename)] INTO [$(_fwFullQVDName)] (qvd);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;DROP TABLE [$(external_tablename)];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000080;"&gt;DROP TABLE [TempPartitionCalendar];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;LET _fwLastRun = Today();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080;"&gt;//****************************************************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;Exit Script;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-Issue/m-p/60499#M774318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
  </channel>
</rss>

