Im using SugarCRM 7.6 and have a few custom modules made some of them have appeared in the mobile app/layout and some haven't how am I able to amend the configuration to add the missing modules into the mobile app/layout?
Im using SugarCRM 7.6 and have a few custom modules made some of them have appeared in the mobile app/layout and some haven't how am I able to amend the configuration to add the missing modules into the mobile app/layout?
Daniel,
If you go to Admin > Mobile, do you see the custom modules listed in the "Disabled Modules" section? If you do, drag it over to the "Enabled Modules" section and click Save.
Hope this helps,
Lori
/Custom/Extension/application/Ext/Include/modulename.php
$beanList['modulename'] = 'modulename';
$beanFiles['modulename'] = 'modules/modulename/modulename.php';
$moduleList[] = 'modulename';
#$modules_exempt_from_availability_check['modulename'] = 'igst_igs_transactions';
$report_include_modules['modulename'] = 'modulename';
#$modInvisList[] = 'modulename';
1. Commented out both $mobileInvisList and $modules_exempt_from_availability_check
2. Done a repair.
3. Mobile module configuration page enabled the required modules.
4. visible in mobile view.
To come up with this solution i compared a configuration for a module visible in the mobile and one that isn't. Based on the arrays used by view.enablewirelessmodules.php it became obvious what was missing.
/Custom/Extension/application/Ext/Include/modulename.php
$beanList['modulename'] = 'modulename';
$beanFiles['modulename'] = 'modules/modulename/modulename.php';
$moduleList[] = 'modulename';
#$modules_exempt_from_availability_check['modulename'] = 'igst_igs_transactions';
$report_include_modules['modulename'] = 'modulename';
#$modInvisList[] = 'modulename';
1. Commented out both $mobileInvisList and $modules_exempt_from_availability_check
2. Done a repair.
3. Mobile module configuration page enabled the required modules.
4. visible in mobile view.
To come up with this solution i compared a configuration for a module visible in the mobile and one that isn't. Based on the arrays used by view.enablewirelessmodules.php it became obvious what was missing.
didn't work for me