<?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 data from ruby file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612215#M684174</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;Please any can help me how to get data from ruby file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Feb 2014 14:30:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-05T14:30:47Z</dc:date>
    <item>
      <title>Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612215#M684174</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;Please any can help me how to get data from ruby file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 14:30:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612215#M684174</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-05T14:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612216#M684175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What type of files these are ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with fixed delimited format&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 18:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612216#M684175</guid>
      <dc:creator />
      <dc:date>2014-02-05T18:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612217#M684176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dathu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;require 'rubygems'&lt;BR /&gt;require 'mysql'&lt;BR /&gt;require "rspec"&lt;BR /&gt;require 'rspec/expectations'&lt;BR /&gt;require 'active_support/deprecation'&lt;BR /&gt;require 'active_support/dependencies'&lt;BR /&gt;#ActiveSupport::Dependencies.autoload_paths &amp;lt;&amp;lt; File.expand_path(File.join(Dir.pwd, 'lib'))&lt;/P&gt;&lt;P&gt;def r_for_retailer(retailer)&lt;BR /&gt;retailer = retailer.downcase&lt;BR /&gt;&amp;nbsp; case retailer&lt;BR /&gt;&amp;nbsp; when "Targetus"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r1="Target-US--List"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r2="Target-US--Detail"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_count = 3842&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $brand_count = 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $swatch_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_description = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_details = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $colour_tags = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $menu2_tags = false&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $currency = "USD"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $country = "US"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $retailer_name = "Target-us"&lt;BR /&gt;&amp;nbsp; when "Relianceus"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r1="Reliance-US--List"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r2="Reliance-US--Detail"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_count = 5000&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $brand_count = 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $swatch_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_description = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_details = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $colour_tags = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $menu2_tags = false&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $currency = "USD"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $country = "US"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $retailer_name = "Reliance-us"&lt;BR /&gt;&amp;nbsp; when "little"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r1="Little-List"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r2="Little-UK--Detail"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_count = 7966&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $brand_count = 249&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $swatch_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_description = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_details = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $colour_tags = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $menu2_tags = false&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $currency = "GBP"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $country = "UK"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $retailer_name = "little-uk"&lt;BR /&gt;&amp;nbsp; when "Hollandus"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r1="Holland-US--List"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $r2="Holland-US--Detail"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_count = 10248&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $brand_count = 464&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $swatch_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_images = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_description = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $product_details = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $colour_tags = true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $menu2_tags = false&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $currency = "USD"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $country = "US"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $retailer_name = "Holland-us"&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;AfterStep do&lt;BR /&gt;&amp;nbsp; if !$retailer.eql?$old_retailer&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; connect_to_database&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp; create_schema&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; robots_for_retailer($retailer)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp; copy_data_in_database&lt;BR /&gt;&amp;nbsp; end&lt;BR /&gt;&amp;nbsp; $old_retailer = $retailer&lt;BR /&gt;end&lt;/P&gt;&lt;P&gt;at_exit do&lt;BR /&gt;#&amp;nbsp; write_statistics&lt;BR /&gt;&amp;nbsp; $db.close&lt;BR /&gt;end&lt;BR /&gt;end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When tried to load data its its only support fixed record option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="52804" alt="Status.PNG" class="jive-image" src="https://community.qlik.com/legacyfs/online/52804_Status.PNG" style="width: 620px; height: 518px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 14:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612217#M684176</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-07T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612218#M684177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why are you trying to load the code in the QV Script. I think you must convert this file into more QV based readable format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Angad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:00:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612218#M684177</guid>
      <dc:creator />
      <dc:date>2014-02-07T16:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612219#M684178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give more details please , so we can help you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612219#M684178</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-02-07T16:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612220#M684179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nitha, can you please post the sample file and expected O/P from file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 16:54:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612220#M684179</guid>
      <dc:creator />
      <dc:date>2014-02-07T16:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612221#M684180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Dathu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the post how do we upload document files,i can see only&amp;nbsp; uploader for image,video and url link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 19:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612221#M684180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-07T19:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612222#M684181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Angad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried,but unable to find how to covert the ruby file to desired file format.&lt;/P&gt;&lt;P&gt;Is there any way to convert this to desired file format.&lt;/P&gt;&lt;P&gt;But there is disadvantage,i want to load the ruby file daily,&lt;/P&gt;&lt;P&gt;as its going to change when there is changes in values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the straight table column values to be flag based on the values in ruby file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 19:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612222#M684181</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-07T19:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612223#M684182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the straight table column values to be flag based on the values in ruby file.&lt;/P&gt;&lt;ADDRESS&gt;we have retailers data collected(products,prices,brands,etc) in db everyday.&lt;/ADDRESS&gt;&lt;ADDRESS&gt;i have devloped a dashboard with straight table with retailers as dimension and&lt;/ADDRESS&gt;&lt;ADDRESS&gt;the data is collected every day ,data in db is compared to values in ruby file and&lt;/ADDRESS&gt;&lt;ADDRESS&gt;if values in db is within tolerance to values in ruby file the retailer is passed or else failed.&lt;/ADDRESS&gt;&lt;ADDRESS&gt;so i want to compare these values and put pass/fail status against a retailer for particular&lt;/ADDRESS&gt;&lt;ADDRESS&gt;date.&lt;/ADDRESS&gt;&lt;ADDRESS&gt;this report gives daily status of retailers.&lt;/ADDRESS&gt;&lt;ADDRESS&gt;&lt;/ADDRESS&gt;&lt;ADDRESS&gt;i am unable to load ruby file.&lt;/ADDRESS&gt;&lt;ADDRESS&gt;Thanks&lt;/ADDRESS&gt;&lt;ADDRESS&gt;Nitha&lt;/ADDRESS&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 20:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612223#M684182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-07T20:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612224#M684183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your Ruby script appears to update a MySql table (named Retailer?). So you should load from the MySql table using ODBC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 20:31:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612224#M684183</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-02-07T20:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612225#M684184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Click the '&lt;STRONG&gt;Use advanced editor&lt;/STRONG&gt;' option to attach the files in the reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 22:38:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612225#M684184</guid>
      <dc:creator />
      <dc:date>2014-02-07T22:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612226#M684185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a weird discussion. Here's the result of my guesswork.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView is a capable ETL tool that easily reads &lt;EM&gt;data&lt;/EM&gt; in various formats and databases. Some manual work is still necessary however when attempting to read novels, tax forms, license plates and source code. Your example contains only four groups of setting so I took the time to manually convert them into something QlikView can understand. See attachments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If in reality there are many more groups in the ruby source, you may consider writing a tool in a general purpose scripting language (like perl) to process groups of values into comma-separated lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the ruby code is a little bit inconsistent. The last value is stored in a variable alternately called r_name or retailer_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 23:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612226#M684185</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-02-07T23:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612227#M684186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for help and Its a typo mistake,retailer_name is correct.&lt;/P&gt;&lt;P&gt;i don't have idea how ruby file is converted to csv or excel.&lt;/P&gt;&lt;P&gt;its a regular update we need from ruby file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 13:38:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612227#M684186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-08T13:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612228#M684187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the attachment is only an example of what to feed into QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need updates on a regular basis, that means that someone or something is updating the ruby code on a regular basis as well. These updates can be done anywhere (csv, ruby program, database table) as long as you don't have to do them twice and in different places. As far as I can see with limited information, you have two options to handle this quickly:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Change your ruby code so that the configuration information is read from an external (csv?) file. The updates need only be done in a single spot, the external file, and both the ruby program and your QlikView application will follow suit. Your r_for_retailer subroutine now needs to do a csv table load, a lookup with the value of parameter retailer, and a load of the different variables with the values found in the corresponding columns.&lt;/LI&gt;&lt;LI&gt;Or recode the ruby program so that the settings for every retailer value are listed in a table-like format at the beginning of the program (a dictionary or whatever this is called in ruby). If you tag the table with comment-like items before and after the actual rows, QlikView can be programmed to extract these lines without too much difficulty. &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But keep in mind that the QlikView script engine is no parser construction toolkit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 19:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612228#M684187</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-02-08T19:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612229#M684188</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;Please check rb file i attached and help me with solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 13:50:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612229#M684188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T13:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Load data from ruby file</title>
      <link>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612230#M684189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,please check rb file attachment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 13:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-data-from-ruby-file/m-p/612230#M684189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-10T13:54:12Z</dc:date>
    </item>
  </channel>
</rss>

