<?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: Default Framework Manager package publish folder</title>
	<atom:link href="http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/feed" rel="self" type="application/rss+xml" />
	<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder</link>
	<description></description>
	<lastBuildDate>Fri, 18 May 2012 08:38:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: ykud</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-18606</link>
		<dc:creator>ykud</dc:creator>
		<pubDate>Mon, 03 Aug 2009 17:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-18606</guid>
		<description>Hi, Sreedhar.
Can you reformulate your question --  it&#039;s pretty dim in current variant?
Package in Cognos is a compiled subset of metadata definitions avalaible for users. For example, you have a fully blown DWH model and you &quot;show&quot; only sales part to interested people to avoid confusion and complexity. Publishing is a process that compiles metadata and puts it into BI portal (content store database, to be clear)</description>
		<content:encoded><![CDATA[<p>Hi, Sreedhar.<br />
Can you reformulate your question &#8212;  it&#8217;s pretty dim in current variant?<br />
Package in Cognos is a compiled subset of metadata definitions avalaible for users. For example, you have a fully blown DWH model and you &#8220;show&#8221; only sales part to interested people to avoid confusion and complexity. Publishing is a process that compiles metadata and puts it into BI portal (content store database, to be clear)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sreedhar</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-18381</link>
		<dc:creator>Sreedhar</dc:creator>
		<pubDate>Mon, 27 Jul 2009 08:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-18381</guid>
		<description>Hi, Is it possible to publish create a package in MSSQL and publish in oracle.</description>
		<content:encoded><![CDATA[<p>Hi, Is it possible to publish create a package in MSSQL and publish in oracle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ykud</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-16066</link>
		<dc:creator>ykud</dc:creator>
		<pubDate>Thu, 21 May 2009 14:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-16066</guid>
		<description>Your problem is in case clause -- you cannot have case clause on CurrentMember in measure. Instead of using case, you should use aggregations over filtered sets. Like
total(measure within set(filter([your_dimension],  your_when_clause))
If you can give more detail on what you&#039;re trying to achieve, i can try to write better example</description>
		<content:encoded><![CDATA[<p>Your problem is in case clause &#8212; you cannot have case clause on CurrentMember in measure. Instead of using case, you should use aggregations over filtered sets. Like<br />
total(measure within set(filter([your_dimension],  your_when_clause))<br />
If you can give more detail on what you&#8217;re trying to achieve, i can try to write better example</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhu</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-16065</link>
		<dc:creator>Madhu</dc:creator>
		<pubDate>Thu, 21 May 2009 13:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-16065</guid>
		<description>Thanks,, Thank you very much

But, my code piece keeps throwing me an error saying that,
&quot;olap_currentmember&quot; is not supported by &quot;RelationalQueryProvider&quot;

My code for calculated measure goes like this:
CASE currentMember()
WHEN  THEN 
WHEN  THEN 
ELSE 
END

Is there anything wrong with this?

And i want to use this calculated measure in Analysis Studio.

Do you think, I have to go PowerCube?

And thanks again for your time! :)

Madhu
cognosmadhu@gmail.com</description>
		<content:encoded><![CDATA[<p>Thanks,, Thank you very much</p>
<p>But, my code piece keeps throwing me an error saying that,<br />
&#8220;olap_currentmember&#8221; is not supported by &#8220;RelationalQueryProvider&#8221;</p>
<p>My code for calculated measure goes like this:<br />
CASE currentMember()<br />
WHEN  THEN<br />
WHEN  THEN<br />
ELSE<br />
END</p>
<p>Is there anything wrong with this?</p>
<p>And i want to use this calculated measure in Analysis Studio.</p>
<p>Do you think, I have to go PowerCube?</p>
<p>And thanks again for your time! <img src='http://ykud.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Madhu<br />
<a href="mailto:cognosmadhu@gmail.com">cognosmadhu@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ykud</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-16064</link>
		<dc:creator>ykud</dc:creator>
		<pubDate>Thu, 21 May 2009 13:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-16064</guid>
		<description>Hi Madhu,

Yes, you can use dimensional functions -- that&#039;s all what DMR is for (except for magnificient Analysis Studio) ). DMRs automatically translate all PeriodsToDate, Current\PreviousMember to valid SQL queries. 

And no problem, post questions anywhere or mail me at mail@ykud.com )</description>
		<content:encoded><![CDATA[<p>Hi Madhu,</p>
<p>Yes, you can use dimensional functions &#8212; that&#8217;s all what DMR is for (except for magnificient Analysis Studio) ). DMRs automatically translate all PeriodsToDate, Current\PreviousMember to valid SQL queries. </p>
<p>And no problem, post questions anywhere or mail me at <a href="mailto:mail@ykud.com">mail@ykud.com</a> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhu</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-16063</link>
		<dc:creator>Madhu</dc:creator>
		<pubDate>Thu, 21 May 2009 11:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-16063</guid>
		<description>Hi Yuri,

Sorry for posting this question here.
Can we use dimensional functions (like currentMember) on DMR (cognos83+Oracle)


And i&#039;m really sorry for posting this here, i know it is irrelevant to the post, but i didn&#039;t know how to reach you!

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Yuri,</p>
<p>Sorry for posting this question here.<br />
Can we use dimensional functions (like currentMember) on DMR (cognos83+Oracle)</p>
<p>And i&#8217;m really sorry for posting this here, i know it is irrelevant to the post, but i didn&#8217;t know how to reach you!</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ykud</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-13861</link>
		<dc:creator>ykud</dc:creator>
		<pubDate>Thu, 02 Apr 2009 22:14:49 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-13861</guid>
		<description>reread first line, den )</description>
		<content:encoded><![CDATA[<p>reread first line, den )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: de</title>
		<link>http://ykud.com/blog/cognos/default-framework-manager-package-publish-folder/comment-page-1#comment-13860</link>
		<dc:creator>de</dc:creator>
		<pubDate>Thu, 02 Apr 2009 21:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://ykud.com/blog/?p=169#comment-13860</guid>
		<description>and what&#039;s name of this file? I had this problem to.</description>
		<content:encoded><![CDATA[<p>and what&#8217;s name of this file? I had this problem to.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

