How can I report on the Product Catalog?

Hi All,

Just want to know if is there any way to enable Product Catalog module in Reports.

On checking it in core code it seems there's no upgrade safe way to do so as SugarCRM by default not allow to create report for Product Catalog module.
Parents
  • To add the modules ProspectLists, CampaignTracker and ProductTemplates to the list of reportable modules just create a file custom/modules/Reports/metadata/reportmoduledefs.php with the following code (or add it to existing file):

    //add  Prospectlists

    $additionalModules[] = 'ProspectLists';

    foreach ($exemptModules as $k => $v)

       if ($v=='ProspectLists')

          unset($exemptModules[$k]);

    //add CampaignTrackers

    $additionalModules[] = 'CampaignTrackers';

    foreach ($exemptModules as $k => $v)

       if ($v=='CampaignTrackers')

          unset($exemptModules[$k]);

    //add  ProductTemplates

    $additionalModules[] = 'ProductTemplates';

    foreach ($exemptModules as $k => $v)

       if ($v=='ProductTemplates')

          unset($exemptModules[$k]);

    Harald Kuske
    Principal Solution Architect – Professional Services, EMEA
    hkuske@sugarcrm.com
    SugarCRM Deutschland GmbH

  • The product catalog is now available for reporting from Summer 2018 release (Version 8.1 on the cloud) onwards. On prem customers will have this feature available from Version 9.0. 

    Deepak Deolalikar

    Senior Director Product Management

Reply Children
No Data