I'm trying to add new columns in Magento's "Products Ordered" report. I have added custom options to each product and I'm wondering how I can make these custom options show in the reports view.
So far I've read that one can add columns in the app/code/core/Mage/Adminhtml/Block/Report/Product/Ordered/Grid.php like so:
$this->addColumn('sku', array(
'header' =>Mage::helper('reports')->__('Product Sku'),
'sortable' =>false,
'index' =>'sku'
));
But how would I go about adding custom options I've created for my products? I'm using Magento Community Version 1.6.2.
Thanx in advance!