<?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 How to Access User Created Table Box via Automation Interface? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859892#M301073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are attempting to access a user created table box via the automation interface with statements like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set obj1 = newdoc.GetSheetObject("TB458-43")&lt;/P&gt;&lt;P&gt;obj1.SendToExcel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the object is set to nothing but all other parts of the code work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems user created objects like this table box (TB458-43) are not accessible via the automation interface?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What changes do me need to make to make this possible? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Apr 2015 16:29:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-04-06T16:29:45Z</dc:date>
    <item>
      <title>How to Access User Created Table Box via Automation Interface?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859892#M301073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are attempting to access a user created table box via the automation interface with statements like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set obj1 = newdoc.GetSheetObject("TB458-43")&lt;/P&gt;&lt;P&gt;obj1.SendToExcel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the object is set to nothing but all other parts of the code work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems user created objects like this table box (TB458-43) are not accessible via the automation interface?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What changes do me need to make to make this possible? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:29:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859892#M301073</guid>
      <dc:creator />
      <dc:date>2015-04-06T16:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Access User Created Table Box via Automation Interface?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859893#M301074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to do someting like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set obj1 = newdoc.GetSheetObject("&lt;STRONG&gt;Server\&lt;/STRONG&gt;TB458-43")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unless you prefix your sheetobject with &lt;STRONG&gt;Server\&lt;/STRONG&gt; you will not find anything... (I think it is case-sensitive)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use "User Created Objects" on a QlikView document on a QlikView server from C# without a hitch... but I used&lt;/P&gt;&lt;P&gt;the GetTablesBoxes method to get a list of tableboxes. So then I was able to inspect what the ObjectID was of&lt;/P&gt;&lt;P&gt;the retrieved objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 22:30:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859893#M301074</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-06T22:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Access User Created Table Box via Automation Interface?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859894#M301075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Petter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 01:11:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859894#M301075</guid>
      <dc:creator />
      <dc:date>2015-04-07T01:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Access User Created Table Box via Automation Interface?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859895#M301076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad I could help. Could you please mark the suggestion as &lt;STRONG&gt;answered&lt;/STRONG&gt; so the thread will be closed and verified as solved &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 06:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Access-User-Created-Table-Box-via-Automation-Interface/m-p/859895#M301076</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-07T06:56:59Z</dc:date>
    </item>
  </channel>
</rss>

