Module Target List is missing in Studio

The module Target List seems to be missing in Studio

Hi Cade,

You need to add a studio.php within the modules metadata. To do this, create a file studio.php inside custom/modules/ProspectLists/metadata

Thanks,

Will.

Hello Will, I have done what you instructed, but I think I might be missing something here…

This is how the studio.php file looks like right now:

==============

<?php
if(!defined(‘sugarEntry’) || !sugarEntry) die(‘Not A Valid Entry Point’);
$GLOBALS[‘studioDefs’][‘ProspectLists’] = array(
‘LBL_DETAILVIEW’=>array(
‘template’=>‘DetailView’,
‘meta_file’=>‘modules/ProspectLists/detailviewdefs.php’,
‘type’=>‘Detailview’,
),
‘LBL_EDITVIEW’=>array(
‘template’=>‘EditView’,
‘meta_file’=>‘modules/ProspectLists/editviewdefs.php’,
‘type’=>‘EditView’,
),
‘LBL_LISTVIEW’=>array(
‘template’=>‘listview’,
‘meta_file’=>‘modules/ProspectLists/listviewdefs.php’,
‘type’=>‘ListView’,
),
‘LBL_SEARCHFORM’=>array(
‘template’=>‘xtpl’,
‘template_file’=>‘modules/ProspectLists/SearchForm.html’,
‘php_file’=>‘modules/ProspectLists/ListView.php’,
‘type’=>‘SearchForm’,
),
);

The path where the file is located at is custom/modules/ProspectLists/metadata/studio.php

Could you please provide further assistance on this matter?

After doing this, the TargetList is still not showing in the Studio

Hello there…

I just found this article https://suitecrm.com/forum/suitecrm-7-0-discussion/2433-manage-target-lists which describes the process.

Two things I was doing wrong:

  • Filling up the file with content
  • The correct path for the file to be located at is without the “custom” folder.

Thank you!