<?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 Creating QVD in Qlik in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509418#M750216</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using transformed QVD in my application.&lt;/P&gt;&lt;P&gt;But I cannot use Autonumber feuction while QVD creation.&lt;/P&gt;&lt;P&gt;and I am using autonumber function in data model layer.&lt;/P&gt;&lt;P&gt;But my results are not yet matching.&lt;/P&gt;&lt;P&gt;Do I need to avoid applymap and where conditions as well while QVD creation.&lt;/P&gt;&lt;P&gt;Below is the piece of code for QVD creation please suggest which part do I need to handle in data model layer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD // Key fields&lt;BR /&gt;// If Item Category is 'ZTAC', 'ZTAK' or 'ZTRO' retrieve Material from ZSD_REELS using Plant and Material Entered&lt;BR /&gt;If (Match ([%Item category_ITEM_CATEG], 'ZTAC', 'ZTAK', 'ZTRO'), ApplyMap ('ZSD_REELS Map', [%Plant_PLANT]&amp;amp; ' ' &amp;amp; [Material Entered], [%Material_MATERIAL]), [%Material_MATERIAL]) as [%Material_MATERIAL],&lt;BR /&gt;[Sales Document Item Key],&lt;BR /&gt;[Sales Document Number],&lt;BR /&gt;[Sales Document Item],&lt;BR /&gt;[Billing Document Item Key],&lt;BR /&gt;//AutoNumber ([Billing Document Item Key], 'Date Key') as [Date Key],&lt;BR /&gt;[Billing Document Item Key] as [Billing Document Item Count],&lt;BR /&gt;[Billing Document Number],&lt;BR /&gt;[Billing Document Number] as [Billing Document Number Count],&lt;BR /&gt;[Billing Document Item],&lt;BR /&gt;[%CO_AREA_PROFIT_CTR],&lt;BR /&gt;[%Company code_COMP_CODE],&lt;BR /&gt;[%Ship-to Sales District_SALES_DIST],// as '%Sales District_SALES_DIST', //BI-2516 - xrantsju - 20180605 - Sales District is changed back to derived from Sold to Party in SD New.&lt;BR /&gt;[%Sales District_SALES_DIST], //BI-2516 - xrantsju - 20180605 - Sales District is changed back to derived from Sold to Party in SD New.&lt;BR /&gt;[%Billing type_BILL_TYPE],&lt;BR /&gt;[%Billing category_BILL_CAT],&lt;BR /&gt;[%Sales Organization_SALESORG],&lt;BR /&gt;[%Distribution Channel_DISTR_CHAN],&lt;BR /&gt;[%Material group_MATL_GROUP],&lt;BR /&gt;[%MaterialGroup 1_MATL_GRP_1],&lt;BR /&gt;[%MaterialGroup 2_MATL_GRP_2],&lt;BR /&gt;[%MaterialGroup 3_MATL_GRP_3],&lt;BR /&gt;[%Parts Reporting Group_MATL_GRP_3] as [%Parts Reporting Group],&lt;BR /&gt;[%MaterialGroup 4_MATL_GRP_4],&lt;BR /&gt;[%MaterialGroup 5_MATL_GRP_5],&lt;BR /&gt;[%Sold-to Party_SOLD_TO],&lt;BR /&gt;[%Ship-To Party_SHIP_TO],&lt;BR /&gt;[%Bill-to party_BILLTOPRTY],&lt;BR /&gt;[%Item category_ITEM_CATEG],&lt;BR /&gt;[%Sales Representative_SALESEMPLY],&lt;BR /&gt;[%Division_DIVISION],&lt;BR /&gt;[%Sales Office_SALES_OFF],&lt;BR /&gt;[%Shipping point_SHIP_POINT],&lt;BR /&gt;[%Plant_PLANT],&lt;BR /&gt;[%Reason for order_ORD_REASON],&lt;BR /&gt;[%Reason for rejection_REASON_REJ],&lt;BR /&gt;[%Reason for substitution_SUB_REASON],&lt;BR /&gt;[%WBS Element_WBS_ELEMT],&lt;BR /&gt;[%Prod.hierarchy_PROD_HIER_1],&lt;BR /&gt;[%Prod.hierarchy_PROD_HIER_2],&lt;BR /&gt;[%Payer_PAYER],&lt;BR /&gt;[%Trading Partner_ZVBUND],&lt;BR /&gt;[%Partner profit center_PART_PRCTR],&lt;BR /&gt;[Internal Reference],&lt;BR /&gt;// Mappings&lt;BR /&gt;ApplyMap ('Sales Brand Map', [Sales Document Item Key], ' ') as [Sales Brand],&lt;BR /&gt;ApplyMap ('Loading Point Map', [Sales Document Item Key], ' ') as [%Loading point_LOAD_PT],&lt;BR /&gt;ApplyMap ('Delivery Status Map', [Sales Document Item Key], 'A') as [%Delivery Status_DLV_STS],&lt;BR /&gt;ApplyMap ('Schedule Line Category Map', [Sales Document Item Key], ' ') as [%Sched.line category_SCHD_CATEG],&lt;BR /&gt;ApplyMap ('First OCMC Date Map', [Sales Document Item Key], 'N/A') as [First OCMC Date],&lt;BR /&gt;ApplyMap ('OTCC Date Map', [Sales Document Item Key], 'N/A') as [OTCC Date],&lt;BR /&gt;ApplyMap ('First OTCC Date Map', [Sales Document Item Key], 'N/A') as [First OTCC Date],&lt;BR /&gt;ApplyMap ('Required Goods Issue Date Map', [Sales Document Item Key], 'N/A') as [Required Goods Issue Date],&lt;BR /&gt;ApplyMap ('Goods Receipt Date Map', [Sales Document Item Key], 'N/A') as [Goods Receipt Date],&lt;BR /&gt;ApplyMap ('Billing Value in PC View LC Map', [Billing Document Item Key], 0) as [Billing Value in PC View LC],&lt;BR /&gt;ApplyMap ('Billing Value in PC View DC Map', [Billing Document Item Key], 0) as [Billing Value in PC View DC],&lt;BR /&gt;ApplyMap ('Billing List Price LC Map', [Billing Document Item Key], 0) as [Billing List Price LC],&lt;BR /&gt;ApplyMap ('Billing List Price DC Map', [Billing Document Item Key], 0) as [Billing List Price DC],&lt;BR /&gt;ApplyMap ('Customer Reference Map', [Sales Document Item Key], ' ') as [Customer Reference],&lt;BR /&gt;&lt;BR /&gt;If (IsNull (ApplyMap ('ZFA/ZFZ Sales Document Item Map', [Sales Document Item Key], Null ())), [Billing Document Date], ApplyMap ('ZF2/ZFP/ZF2D/ZFPD Billing Date Map', [Sales Document Item Key], Null ())) as [Billing Document Date],&lt;BR /&gt;&lt;BR /&gt;[Profit Center Sales Document Item Key],&lt;BR /&gt;[Billing Document Creator],&lt;BR /&gt;[Sell and Lease Back Order],&lt;BR /&gt;[Parts Brand],&lt;BR /&gt;ApplyMap ('Sales Document Header Medium Description Map', ApplyMap ('Reference Document Map', [Sales Document Number], Null ()), 'N/A') as [Service Agreement Number],&lt;BR /&gt;[Service Request Number],&lt;BR /&gt;[Siebel Document Number],&lt;BR /&gt;If ([Service Request Number] &amp;lt;&amp;gt; ' ', 'SR-' &amp;amp; [Service Request Number], ApplyMap ('Sales Document Header Medium Description Map', ApplyMap ('Reference Document Map', [Sales Document Number], Null ()), 'N/A')) as [Siebel Key],&lt;BR /&gt;[Siebel Position Number],&lt;BR /&gt;[Customer Purchase Order Number],&lt;BR /&gt;[Customer Purchase Order Item],&lt;BR /&gt;[Customer Material Number],&lt;BR /&gt;[Group Currency],&lt;BR /&gt;[Local Currency],&lt;BR /&gt;[Document Currency],&lt;BR /&gt;[Base Unit],&lt;BR /&gt;[Parts Portal Web Number],&lt;BR /&gt;[Parts Portal Web Number Exists],&lt;BR /&gt;[Material Entered],&lt;BR /&gt;[Project No],&lt;BR /&gt;[Crane Serial Number],&lt;/P&gt;&lt;P&gt;// Figures&lt;BR /&gt;[Billing Quantity SU],&lt;BR /&gt;[Billing Quantity BU],&lt;BR /&gt;[Billing Subtotal 1],&lt;BR /&gt;[Billing Subtotal 2],&lt;BR /&gt;[Billing Subtotal 3],&lt;BR /&gt;[Billing Subtotal 4],&lt;BR /&gt;[Billing Subtotal 5],&lt;BR /&gt;[Billing Subtotal 6],&lt;BR /&gt;[Billing Subtotal 1 LC],&lt;BR /&gt;[Billing Subtotal 2 LC],&lt;BR /&gt;[Billing Subtotal 3 LC],&lt;BR /&gt;[Billing Subtotal 4 LC],&lt;BR /&gt;[Billing Subtotal 5 LC],&lt;BR /&gt;[Billing Subtotal 6 LC],&lt;BR /&gt;[Billing Net Value],&lt;BR /&gt;[Billing Net Value LC],&lt;BR /&gt;[Billing Net Value GC],&lt;BR /&gt;[Billing Cost],&lt;BR /&gt;[Billing Cost LC],&lt;BR /&gt;[Billing Cost GC],&lt;BR /&gt;[Billing Margin],&lt;BR /&gt;[Billing Margin LC],&lt;BR /&gt;[Billing Margin GC],&lt;BR /&gt;[Billing Accounting Value LC],&lt;BR /&gt;ApplyMap ('Purchasing Document Type Map', [Sales Document Number], ' ') as [%Purchasing document type_DOCTYPE],&lt;BR /&gt;//ApplyMap ('Recommended Sales Price Map', [%Sales Organization_SALESORG] &amp;amp; ' ' &amp;amp; [Material Entered] &amp;amp; ' ' &amp;amp; [Billing Document Date], Null ()) as [Recommended Sales Price],&lt;/P&gt;&lt;P&gt;'Billing' as QVDsource&lt;BR /&gt;FROM&lt;BR /&gt;[Billing.qvd] (qvd)&lt;BR /&gt;// Do not retrieve down payments (billing category P)&lt;BR /&gt;WHERE [%Billing category_BILL_CAT] &amp;lt;&amp;gt; 'P'&lt;BR /&gt;// Do not retrieve pro forma invoices&lt;BR /&gt;AND [SD Document Category] &amp;lt;&amp;gt; 'U'&lt;BR /&gt;// Do not retrieve down payments statistical invoice lines from closing invoices&lt;BR /&gt;AND [Statistical Values Indicator] &amp;lt;&amp;gt; 'Y'&lt;BR /&gt;// Removing Stahl data&lt;BR /&gt;AND [%Company code_COMP_CODE] &amp;lt;&amp;gt; 'CN05' and [%Company code_COMP_CODE] &amp;lt;&amp;gt; 'US04';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DIRECTORY $(VOPTQVD);&lt;BR /&gt;&lt;BR /&gt;store Data into Data.QVD(qvd);&lt;BR /&gt;drop table Data;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>kishorj1982</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Creating QVD in Qlik</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509418#M750216</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using transformed QVD in my application.&lt;/P&gt;&lt;P&gt;But I cannot use Autonumber feuction while QVD creation.&lt;/P&gt;&lt;P&gt;and I am using autonumber function in data model layer.&lt;/P&gt;&lt;P&gt;But my results are not yet matching.&lt;/P&gt;&lt;P&gt;Do I need to avoid applymap and where conditions as well while QVD creation.&lt;/P&gt;&lt;P&gt;Below is the piece of code for QVD creation please suggest which part do I need to handle in data model layer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD // Key fields&lt;BR /&gt;// If Item Category is 'ZTAC', 'ZTAK' or 'ZTRO' retrieve Material from ZSD_REELS using Plant and Material Entered&lt;BR /&gt;If (Match ([%Item category_ITEM_CATEG], 'ZTAC', 'ZTAK', 'ZTRO'), ApplyMap ('ZSD_REELS Map', [%Plant_PLANT]&amp;amp; ' ' &amp;amp; [Material Entered], [%Material_MATERIAL]), [%Material_MATERIAL]) as [%Material_MATERIAL],&lt;BR /&gt;[Sales Document Item Key],&lt;BR /&gt;[Sales Document Number],&lt;BR /&gt;[Sales Document Item],&lt;BR /&gt;[Billing Document Item Key],&lt;BR /&gt;//AutoNumber ([Billing Document Item Key], 'Date Key') as [Date Key],&lt;BR /&gt;[Billing Document Item Key] as [Billing Document Item Count],&lt;BR /&gt;[Billing Document Number],&lt;BR /&gt;[Billing Document Number] as [Billing Document Number Count],&lt;BR /&gt;[Billing Document Item],&lt;BR /&gt;[%CO_AREA_PROFIT_CTR],&lt;BR /&gt;[%Company code_COMP_CODE],&lt;BR /&gt;[%Ship-to Sales District_SALES_DIST],// as '%Sales District_SALES_DIST', //BI-2516 - xrantsju - 20180605 - Sales District is changed back to derived from Sold to Party in SD New.&lt;BR /&gt;[%Sales District_SALES_DIST], //BI-2516 - xrantsju - 20180605 - Sales District is changed back to derived from Sold to Party in SD New.&lt;BR /&gt;[%Billing type_BILL_TYPE],&lt;BR /&gt;[%Billing category_BILL_CAT],&lt;BR /&gt;[%Sales Organization_SALESORG],&lt;BR /&gt;[%Distribution Channel_DISTR_CHAN],&lt;BR /&gt;[%Material group_MATL_GROUP],&lt;BR /&gt;[%MaterialGroup 1_MATL_GRP_1],&lt;BR /&gt;[%MaterialGroup 2_MATL_GRP_2],&lt;BR /&gt;[%MaterialGroup 3_MATL_GRP_3],&lt;BR /&gt;[%Parts Reporting Group_MATL_GRP_3] as [%Parts Reporting Group],&lt;BR /&gt;[%MaterialGroup 4_MATL_GRP_4],&lt;BR /&gt;[%MaterialGroup 5_MATL_GRP_5],&lt;BR /&gt;[%Sold-to Party_SOLD_TO],&lt;BR /&gt;[%Ship-To Party_SHIP_TO],&lt;BR /&gt;[%Bill-to party_BILLTOPRTY],&lt;BR /&gt;[%Item category_ITEM_CATEG],&lt;BR /&gt;[%Sales Representative_SALESEMPLY],&lt;BR /&gt;[%Division_DIVISION],&lt;BR /&gt;[%Sales Office_SALES_OFF],&lt;BR /&gt;[%Shipping point_SHIP_POINT],&lt;BR /&gt;[%Plant_PLANT],&lt;BR /&gt;[%Reason for order_ORD_REASON],&lt;BR /&gt;[%Reason for rejection_REASON_REJ],&lt;BR /&gt;[%Reason for substitution_SUB_REASON],&lt;BR /&gt;[%WBS Element_WBS_ELEMT],&lt;BR /&gt;[%Prod.hierarchy_PROD_HIER_1],&lt;BR /&gt;[%Prod.hierarchy_PROD_HIER_2],&lt;BR /&gt;[%Payer_PAYER],&lt;BR /&gt;[%Trading Partner_ZVBUND],&lt;BR /&gt;[%Partner profit center_PART_PRCTR],&lt;BR /&gt;[Internal Reference],&lt;BR /&gt;// Mappings&lt;BR /&gt;ApplyMap ('Sales Brand Map', [Sales Document Item Key], ' ') as [Sales Brand],&lt;BR /&gt;ApplyMap ('Loading Point Map', [Sales Document Item Key], ' ') as [%Loading point_LOAD_PT],&lt;BR /&gt;ApplyMap ('Delivery Status Map', [Sales Document Item Key], 'A') as [%Delivery Status_DLV_STS],&lt;BR /&gt;ApplyMap ('Schedule Line Category Map', [Sales Document Item Key], ' ') as [%Sched.line category_SCHD_CATEG],&lt;BR /&gt;ApplyMap ('First OCMC Date Map', [Sales Document Item Key], 'N/A') as [First OCMC Date],&lt;BR /&gt;ApplyMap ('OTCC Date Map', [Sales Document Item Key], 'N/A') as [OTCC Date],&lt;BR /&gt;ApplyMap ('First OTCC Date Map', [Sales Document Item Key], 'N/A') as [First OTCC Date],&lt;BR /&gt;ApplyMap ('Required Goods Issue Date Map', [Sales Document Item Key], 'N/A') as [Required Goods Issue Date],&lt;BR /&gt;ApplyMap ('Goods Receipt Date Map', [Sales Document Item Key], 'N/A') as [Goods Receipt Date],&lt;BR /&gt;ApplyMap ('Billing Value in PC View LC Map', [Billing Document Item Key], 0) as [Billing Value in PC View LC],&lt;BR /&gt;ApplyMap ('Billing Value in PC View DC Map', [Billing Document Item Key], 0) as [Billing Value in PC View DC],&lt;BR /&gt;ApplyMap ('Billing List Price LC Map', [Billing Document Item Key], 0) as [Billing List Price LC],&lt;BR /&gt;ApplyMap ('Billing List Price DC Map', [Billing Document Item Key], 0) as [Billing List Price DC],&lt;BR /&gt;ApplyMap ('Customer Reference Map', [Sales Document Item Key], ' ') as [Customer Reference],&lt;BR /&gt;&lt;BR /&gt;If (IsNull (ApplyMap ('ZFA/ZFZ Sales Document Item Map', [Sales Document Item Key], Null ())), [Billing Document Date], ApplyMap ('ZF2/ZFP/ZF2D/ZFPD Billing Date Map', [Sales Document Item Key], Null ())) as [Billing Document Date],&lt;BR /&gt;&lt;BR /&gt;[Profit Center Sales Document Item Key],&lt;BR /&gt;[Billing Document Creator],&lt;BR /&gt;[Sell and Lease Back Order],&lt;BR /&gt;[Parts Brand],&lt;BR /&gt;ApplyMap ('Sales Document Header Medium Description Map', ApplyMap ('Reference Document Map', [Sales Document Number], Null ()), 'N/A') as [Service Agreement Number],&lt;BR /&gt;[Service Request Number],&lt;BR /&gt;[Siebel Document Number],&lt;BR /&gt;If ([Service Request Number] &amp;lt;&amp;gt; ' ', 'SR-' &amp;amp; [Service Request Number], ApplyMap ('Sales Document Header Medium Description Map', ApplyMap ('Reference Document Map', [Sales Document Number], Null ()), 'N/A')) as [Siebel Key],&lt;BR /&gt;[Siebel Position Number],&lt;BR /&gt;[Customer Purchase Order Number],&lt;BR /&gt;[Customer Purchase Order Item],&lt;BR /&gt;[Customer Material Number],&lt;BR /&gt;[Group Currency],&lt;BR /&gt;[Local Currency],&lt;BR /&gt;[Document Currency],&lt;BR /&gt;[Base Unit],&lt;BR /&gt;[Parts Portal Web Number],&lt;BR /&gt;[Parts Portal Web Number Exists],&lt;BR /&gt;[Material Entered],&lt;BR /&gt;[Project No],&lt;BR /&gt;[Crane Serial Number],&lt;/P&gt;&lt;P&gt;// Figures&lt;BR /&gt;[Billing Quantity SU],&lt;BR /&gt;[Billing Quantity BU],&lt;BR /&gt;[Billing Subtotal 1],&lt;BR /&gt;[Billing Subtotal 2],&lt;BR /&gt;[Billing Subtotal 3],&lt;BR /&gt;[Billing Subtotal 4],&lt;BR /&gt;[Billing Subtotal 5],&lt;BR /&gt;[Billing Subtotal 6],&lt;BR /&gt;[Billing Subtotal 1 LC],&lt;BR /&gt;[Billing Subtotal 2 LC],&lt;BR /&gt;[Billing Subtotal 3 LC],&lt;BR /&gt;[Billing Subtotal 4 LC],&lt;BR /&gt;[Billing Subtotal 5 LC],&lt;BR /&gt;[Billing Subtotal 6 LC],&lt;BR /&gt;[Billing Net Value],&lt;BR /&gt;[Billing Net Value LC],&lt;BR /&gt;[Billing Net Value GC],&lt;BR /&gt;[Billing Cost],&lt;BR /&gt;[Billing Cost LC],&lt;BR /&gt;[Billing Cost GC],&lt;BR /&gt;[Billing Margin],&lt;BR /&gt;[Billing Margin LC],&lt;BR /&gt;[Billing Margin GC],&lt;BR /&gt;[Billing Accounting Value LC],&lt;BR /&gt;ApplyMap ('Purchasing Document Type Map', [Sales Document Number], ' ') as [%Purchasing document type_DOCTYPE],&lt;BR /&gt;//ApplyMap ('Recommended Sales Price Map', [%Sales Organization_SALESORG] &amp;amp; ' ' &amp;amp; [Material Entered] &amp;amp; ' ' &amp;amp; [Billing Document Date], Null ()) as [Recommended Sales Price],&lt;/P&gt;&lt;P&gt;'Billing' as QVDsource&lt;BR /&gt;FROM&lt;BR /&gt;[Billing.qvd] (qvd)&lt;BR /&gt;// Do not retrieve down payments (billing category P)&lt;BR /&gt;WHERE [%Billing category_BILL_CAT] &amp;lt;&amp;gt; 'P'&lt;BR /&gt;// Do not retrieve pro forma invoices&lt;BR /&gt;AND [SD Document Category] &amp;lt;&amp;gt; 'U'&lt;BR /&gt;// Do not retrieve down payments statistical invoice lines from closing invoices&lt;BR /&gt;AND [Statistical Values Indicator] &amp;lt;&amp;gt; 'Y'&lt;BR /&gt;// Removing Stahl data&lt;BR /&gt;AND [%Company code_COMP_CODE] &amp;lt;&amp;gt; 'CN05' and [%Company code_COMP_CODE] &amp;lt;&amp;gt; 'US04';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DIRECTORY $(VOPTQVD);&lt;BR /&gt;&lt;BR /&gt;store Data into Data.QVD(qvd);&lt;BR /&gt;drop table Data;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509418#M750216</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD in Qlik</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509435#M750217</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If the key storage gets out of sync, the model breaks.Are you creating an optimised load?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 05:17:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509435#M750217</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2018-11-20T05:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD in Qlik</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509457#M750218</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have attached sample file for your reference because after creation of QVD my results are not matching.&lt;/P&gt;&lt;P&gt;I have applied auto-number function in Data Model Layer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 10:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509457#M750218</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2018-11-20T10:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD in Qlik</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509528#M750219</link>
      <description>&lt;P&gt;Unfortunately my qlik license is expired, may be someone else can look into it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 08:39:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-in-Qlik/m-p/1509528#M750219</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2018-11-20T08:39:29Z</dc:date>
    </item>
  </channel>
</rss>

