<?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: Create custom Reports in Magento Admin</title>
	<atom:link href="http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/</link>
	<description>hacks &#38; solutions for Magento Ecommerce development</description>
	<lastBuildDate>Tue, 29 Jun 2010 07:01:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Kapil</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-186</link>
		<dc:creator>Kapil</dc:creator>
		<pubDate>Tue, 29 Jun 2010 07:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-186</guid>
		<description>Hey thanks for a wonderful tutorials .. tried in Local but wasnt successful so will be waiting for it form you guys and Admin .. 
Also i wanted to have the new added fields to not only show in the Grid but also Export (to CSV &amp; Excel) the same set of data with new field values 
so incase if anyone else need to do the same, here are the simple changes :

-&gt; In ProductController.php Copy exportSoldCsvAction &amp; exportSoldExcelAction methods to the same file and rename it to say exportArtistSoldCsvAction &amp; exportArtistSoldExcelAction,
-&gt; then you may change the $fileName 
-&gt; then change the createBlock to path as &#039;adminhtml/report_product_artistsold_grid&#039;
-&gt; then in your app/code/core/Mage/Adminhtml/Block/Report/Product/Artistsold/Grid.php file

change the line 
From :
$this-&gt;addExportType(&#039;*/*/exportSoldCsv&#039;, Mage::helper(&#039;reports&#039;)-&gt;__(&#039;CSV&#039;));
$this-&gt;addExportType(&#039;*/*/exportSoldExcel&#039;, Mage::helper(&#039;reports&#039;)-&gt;__(&#039;Excel&#039;));

To:
$this-&gt;addExportType(&#039;*/*/exportArtistSoldCsv&#039;, Mage::helper(&#039;reports&#039;)-&gt;__(&#039;CSV&#039;));
$this-&gt;addExportType(&#039;*/*/exportArtistSoldExcel&#039;, Mage::helper(&#039;reports&#039;)-&gt;__(&#039;Excel&#039;));</description>
		<content:encoded><![CDATA[<p>Hey thanks for a wonderful tutorials .. tried in Local but wasnt successful so will be waiting for it form you guys and Admin ..<br />
Also i wanted to have the new added fields to not only show in the Grid but also Export (to CSV &amp; Excel) the same set of data with new field values<br />
so incase if anyone else need to do the same, here are the simple changes :</p>
<p>-&gt; In ProductController.php Copy exportSoldCsvAction &amp; exportSoldExcelAction methods to the same file and rename it to say exportArtistSoldCsvAction &amp; exportArtistSoldExcelAction,<br />
-&gt; then you may change the $fileName<br />
-&gt; then change the createBlock to path as &#8216;adminhtml/report_product_artistsold_grid&#8217;<br />
-&gt; then in your app/code/core/Mage/Adminhtml/Block/Report/Product/Artistsold/Grid.php file</p>
<p>change the line<br />
From :<br />
$this-&gt;addExportType(&#8216;*/*/exportSoldCsv&#8217;, Mage::helper(&#8216;reports&#8217;)-&gt;__(&#8216;CSV&#8217;));<br />
$this-&gt;addExportType(&#8216;*/*/exportSoldExcel&#8217;, Mage::helper(&#8216;reports&#8217;)-&gt;__(&#8216;Excel&#8217;));</p>
<p>To:<br />
$this-&gt;addExportType(&#8216;*/*/exportArtistSoldCsv&#8217;, Mage::helper(&#8216;reports&#8217;)-&gt;__(&#8216;CSV&#8217;));<br />
$this-&gt;addExportType(&#8216;*/*/exportArtistSoldExcel&#8217;, Mage::helper(&#8216;reports&#8217;)-&gt;__(&#8216;Excel&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Victor</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-184</link>
		<dc:creator>Pedro Victor</dc:creator>
		<pubDate>Tue, 15 Jun 2010 07:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-184</guid>
		<description>Somebody can do the report in local?, if yes please can you give me more information, I&#039;m new in Magento and I want do local reports, not in core
thanks</description>
		<content:encoded><![CDATA[<p>Somebody can do the report in local?, if yes please can you give me more information, I&#8217;m new in Magento and I want do local reports, not in core<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rija</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-182</link>
		<dc:creator>rija</dc:creator>
		<pubDate>Mon, 26 Apr 2010 11:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-182</guid>
		<description>when i try
if(key_exists(’report’,$_SESSION)) {
$artistId = $_SESSION[&#039;report&#039;][&#039;artistid&#039;];
}

$artistId not exist

Cas you help me</description>
		<content:encoded><![CDATA[<p>when i try<br />
if(key_exists(’report’,$_SESSION)) {<br />
$artistId = $_SESSION['report']['artistid'];<br />
}</p>
<p>$artistId not exist</p>
<p>Cas you help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-180</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 19 Apr 2010 16:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-180</guid>
		<description>@shehz, I guess you might not configure the xml files properly.</description>
		<content:encoded><![CDATA[<p>@shehz, I guess you might not configure the xml files properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shehz</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-179</link>
		<dc:creator>shehz</dc:creator>
		<pubDate>Sun, 11 Apr 2010 05:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-179</guid>
		<description>Hi 
   Thanks for the tutorial . I followed all your steps and created the fields that you created. I manage to get the menu under product 
But When I click on Artist Sold Works  .  It gives me 404 error Page not found. 
Can you please guide me what am I doing wrong

Thanks</description>
		<content:encoded><![CDATA[<p>Hi<br />
   Thanks for the tutorial . I followed all your steps and created the fields that you created. I manage to get the menu under product<br />
But When I click on Artist Sold Works  .  It gives me 404 error Page not found.<br />
Can you please guide me what am I doing wrong</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-174</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:58:08 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-174</guid>
		<description>Hej man, 

I am trying to develop a custom report for my company. So i managed to modify one of the existing reports but can not succeed in adding some extra search criteria as you added the Author. Your code was of great help for me as it pointed me where to search for solving the problem. I have one question for you, where is the following session set: 

if(key_exists(&#039;report&#039;,$_SESSION)) {
       $artistId = $_SESSION[&#039;report&#039;][&#039;artistid&#039;];
    }

my report is local and i have placed the if statement the same class as you did but seems can not find the report into the SESSION. So do you have any idea?? Any help would be greatly appreciated. Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hej man, </p>
<p>I am trying to develop a custom report for my company. So i managed to modify one of the existing reports but can not succeed in adding some extra search criteria as you added the Author. Your code was of great help for me as it pointed me where to search for solving the problem. I have one question for you, where is the following session set: </p>
<p>if(key_exists(&#8216;report&#8217;,$_SESSION)) {<br />
       $artistId = $_SESSION['report']['artistid'];<br />
    }</p>
<p>my report is local and i have placed the if statement the same class as you did but seems can not find the report into the SESSION. So do you have any idea?? Any help would be greatly appreciated. Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Om</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-172</link>
		<dc:creator>Om</dc:creator>
		<pubDate>Tue, 02 Mar 2010 14:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-172</guid>
		<description>Hi,

   can anybody help me to develop a module in admin so that some specific users can add products. 

like in my case i have created the wholeseller users and give them permission on my custom module.

i need to just a duplicate product management which can give facility to add/edit delete products on attribute basis.

thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>   can anybody help me to develop a module in admin so that some specific users can add products. </p>
<p>like in my case i have created the wholeseller users and give them permission on my custom module.</p>
<p>i need to just a duplicate product management which can give facility to add/edit delete products on attribute basis.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-171</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 24 Feb 2010 09:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-171</guid>
		<description>@Raj,
You can try the module creator. Using that you can create a new Module, which will be very basic. 
Then you will need to customize it based on your needs.</description>
		<content:encoded><![CDATA[<p>@Raj,<br />
You can try the module creator. Using that you can create a new Module, which will be very basic.<br />
Then you will need to customize it based on your needs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-170</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Wed, 24 Feb 2010 06:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-170</guid>
		<description>Great Tutorial Mate!
But can you please describe little bit more if we want to add a big module in Administration!
Actually i am building this http://www.getmybrand.com website and need to add new module within its front end and back end!
Any help would be appreciated!

Regards,
Raj</description>
		<content:encoded><![CDATA[<p>Great Tutorial Mate!<br />
But can you please describe little bit more if we want to add a big module in Administration!<br />
Actually i am building this <a href="http://www.getmybrand.com" rel="nofollow">http://www.getmybrand.com</a> website and need to add new module within its front end and back end!<br />
Any help would be appreciated!</p>
<p>Regards,<br />
Raj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruben</title>
		<link>http://magentocoder.jigneshpatel.co.in/reports/create-custom-reports-in-magento-admin/comment-page-1/#comment-166</link>
		<dc:creator>Ruben</dc:creator>
		<pubDate>Wed, 03 Feb 2010 17:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://magentocoder.jigneshpatel.co.in/?p=60#comment-166</guid>
		<description>Hi, you made a good tutorial to do nice custom reports.

Can you give me some lights how to do a search filter, like you show in the image, to return only the artist we want?

cheers!</description>
		<content:encoded><![CDATA[<p>Hi, you made a good tutorial to do nice custom reports.</p>
<p>Can you give me some lights how to do a search filter, like you show in the image, to return only the artist we want?</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
