<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Querying the Busines Objects XI CMS InfoStore Database Tables</title>
	<atom:link href="http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/</link>
	<description>Business Objects tips, tricks, articles, blog, guides...</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:04:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-2313</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Thu, 09 Feb 2012 13:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-2313</guid>
		<description>Hi Smruthi, Query Builder has some limits when trying to query two kinds of objects.  Fortunately, the &quot;report&quot; objects have an &quot;si_owner&quot; object that indicates the user that created that object.  Therefore, you know what your &lt;code&gt;SELECT&lt;/code&gt; clause should be:
&lt;code&gt;SELECT si_id, si_name, si_owner&lt;/code&gt;
Now you need to filter these results; you don&#039;t want all reports.  You said that you wanted &quot;scheduled reports&quot; that are in the future.  That&#039;s a filter, right there, or in the case of a Query Builder that is your &lt;code&gt;WHERE&lt;/code&gt; clause:

First filter just to WebI reports (you could customize this as you wish to include &quot;DeskI&quot; or &quot;Crystal Reports&quot;):
&lt;code&gt;WHERE si_kind = &#039;WebI&#039;&lt;/code&gt;

Next filter to just scheduled instances:
&lt;code&gt;AND si_instance = 1 AND si_recurring = 1&lt;/code&gt;

That is really all that you need, if the Business Objects report is a recurring instance than it is scheduled for the future.  You might want more in the &lt;code&gt;SELECT&lt;/code&gt; clause like the next run time or other properties.</description>
		<content:encoded><![CDATA[<p>Hi Smruthi, Query Builder has some limits when trying to query two kinds of objects.  Fortunately, the &#8220;report&#8221; objects have an &#8220;si_owner&#8221; object that indicates the user that created that object.  Therefore, you know what your <code>SELECT</code> clause should be:<br />
<code>SELECT si_id, si_name, si_owner</code><br />
Now you need to filter these results; you don&#8217;t want all reports.  You said that you wanted &#8220;scheduled reports&#8221; that are in the future.  That&#8217;s a filter, right there, or in the case of a Query Builder that is your <code>WHERE</code> clause:</p>
<p>First filter just to WebI reports (you could customize this as you wish to include &#8220;DeskI&#8221; or &#8220;Crystal Reports&#8221;):<br />
<code>WHERE si_kind = 'WebI'</code></p>
<p>Next filter to just scheduled instances:<br />
<code>AND si_instance = 1 AND si_recurring = 1</code></p>
<p>That is really all that you need, if the Business Objects report is a recurring instance than it is scheduled for the future.  You might want more in the <code>SELECT</code> clause like the next run time or other properties.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smruthi</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-2311</link>
		<dc:creator>smruthi</dc:creator>
		<pubDate>Thu, 09 Feb 2012 04:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-2311</guid>
		<description>Hi, I need to find users list who have scheduled reports for future dates using query builder.
Thanks in advance!!

Regards, Smruthi</description>
		<content:encoded><![CDATA[<p>Hi, I need to find users list who have scheduled reports for future dates using query builder.<br />
Thanks in advance!!</p>
<p>Regards, Smruthi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: link2boe</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-2102</link>
		<dc:creator>link2boe</dc:creator>
		<pubDate>Thu, 13 Oct 2011 09:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-2102</guid>
		<description>HI Ishaq,

I also tested this one and was impressed on 1st look.
Then I tested and had few queries; to my surprise, I got responded to my queries even before a ES rep does.

Nice, small tool to make life simpler.

Cheers,
PT</description>
		<content:encoded><![CDATA[<p>HI Ishaq,</p>
<p>I also tested this one and was impressed on 1st look.<br />
Then I tested and had few queries; to my surprise, I got responded to my queries even before a ES rep does.</p>
<p>Nice, small tool to make life simpler.</p>
<p>Cheers,<br />
PT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ishaq</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-1707</link>
		<dc:creator>Ishaq</dc:creator>
		<pubDate>Wed, 16 Mar 2011 14:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-1707</guid>
		<description>I have used the below tool to get reports from the CMS. 

CMS/Connect Community Edition today!
http://www.infolytik.com

Thanks</description>
		<content:encoded><![CDATA[<p>I have used the below tool to get reports from the CMS. </p>
<p>CMS/Connect Community Edition today!<br />
<a href="http://www.infolytik.com" rel="nofollow">http://www.infolytik.com</a></p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-1245</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Tue, 26 Oct 2010 04:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-1245</guid>
		<description>Hi Asha, we all have to start somewhere.  I will try and put together a small introductory article to help you and other like you get orienting more quickly to Business Objects XI&#039;s general architecture.  Thanks for the idea.</description>
		<content:encoded><![CDATA[<p>Hi Asha, we all have to start somewhere.  I will try and put together a small introductory article to help you and other like you get orienting more quickly to Business Objects XI&#8217;s general architecture.  Thanks for the idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asha Stephen</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-1237</link>
		<dc:creator>Asha Stephen</dc:creator>
		<pubDate>Thu, 21 Oct 2010 11:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-1237</guid>
		<description>I am begineer to BO..I wanted to know about CMS..While googling,I got this link..But I couldn&#039;t understand anything from these posts..My inadequate knowledge might be the reason for me not to understand that,,Still I would be grateful If anyone explains in my level of understanding..

Thanks..</description>
		<content:encoded><![CDATA[<p>I am begineer to BO..I wanted to know about CMS..While googling,I got this link..But I couldn&#8217;t understand anything from these posts..My inadequate knowledge might be the reason for me not to understand that,,Still I would be grateful If anyone explains in my level of understanding..</p>
<p>Thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-376</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Mon, 30 Nov 2009 16:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-376</guid>
		<description>Also more discussion on the topic here:

http://www.forumtopics.com/busobj/viewtopic.php?t=87029</description>
		<content:encoded><![CDATA[<p>Also more discussion on the topic here:</p>
<p><a href="http://www.forumtopics.com/busobj/viewtopic.php?t=87029" rel="nofollow">http://www.forumtopics.com/busobj/viewtopic.php?t=87029</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-375</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Mon, 30 Nov 2009 15:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-375</guid>
		<description>It is not possible to decrypt it, but you can blunt force reset it by deleting the record corresponding to the Administrator account (possibly just the password).  This resets it to blank, or rather, no password.  See this for more details:

http://www.ehow.com/how_5005044_reset-business-objects-administrator-password.html</description>
		<content:encoded><![CDATA[<p>It is not possible to decrypt it, but you can blunt force reset it by deleting the record corresponding to the Administrator account (possibly just the password).  This resets it to blank, or rather, no password.  See this for more details:</p>
<p><a href="http://www.ehow.com/how_5005044_reset-business-objects-administrator-password.html" rel="nofollow">http://www.ehow.com/how_5005044_reset-business-objects-administrator-password.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marsbeck</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-374</link>
		<dc:creator>Marsbeck</dc:creator>
		<pubDate>Mon, 30 Nov 2009 08:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-374</guid>
		<description>Hi,

Does someone has an idea about how to reset password of administrator account directly in le CMS database. I&#039;m thinking that, if it is possible to decrypt CMS informations, maybe it is possible to do that.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Does someone has an idea about how to reset password of administrator account directly in le CMS database. I&#8217;m thinking that, if it is possible to decrypt CMS informations, maybe it is possible to do that.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.businessobjectstips.com/tips/server/querying-the-busines-objects-xi-cms-infostore-database-tables/comment-page-1/#comment-367</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Thu, 26 Nov 2009 16:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.businessobjectstips.com/?p=367#comment-367</guid>
		<description>If I understand the question correctly...

There is a direct correlation between the database table field &lt;code&gt;CMS_InfoObjects5.typeid&lt;/code&gt; and the logical field &lt;code&gt;si_obtype&lt;/code&gt;.  One day I went through all of the &quot;kind&quot; to find their &quot;obtype&quot; and then I mapped these to the &quot;typeid&quot;.  This mapping table is in the Business Objects Query Builder guide that we sell here on this web site, so I won&#039;t post the whole table.  But I can tell you that &lt;code&gt;CI_InfoObjects.si_kind &quot;webi&quot; = CI_InfoObjects.obtype &quot;267&quot; = CMS_InfoObjects5.typeid &quot;267&quot;&lt;/code&gt;.  If you need help mapping any other kinds let me know, or you could buy our little Query Builder guide and get teh complete mapping table and much more (a shameless plug, I know).</description>
		<content:encoded><![CDATA[<p>If I understand the question correctly&#8230;</p>
<p>There is a direct correlation between the database table field <code>CMS_InfoObjects5.typeid</code> and the logical field <code>si_obtype</code>.  One day I went through all of the &#8220;kind&#8221; to find their &#8220;obtype&#8221; and then I mapped these to the &#8220;typeid&#8221;.  This mapping table is in the Business Objects Query Builder guide that we sell here on this web site, so I won&#8217;t post the whole table.  But I can tell you that <code>CI_InfoObjects.si_kind "webi" = CI_InfoObjects.obtype "267" = CMS_InfoObjects5.typeid "267"</code>.  If you need help mapping any other kinds let me know, or you could buy our little Query Builder guide and get teh complete mapping table and much more (a shameless plug, I know).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

