We are new to SuiteCRM and we need use the âCasesâ module.
We are planning to associate a suiteCRM user with an âAccountâ in Account Module. There by the logged user have a default account Selected while creating new Cases. We dont want the logged user to view other Accounts List other than what he is permitted to view.
Is this doable ? Please advice how can we achieve this. We are tying to use the suiteCRM as a Portal for customers.
Isnât the âAdvanced Open Portalâ free Joomla module by SalesAgility, meant to let customers enter/view/follow up on their support cases, on your companyâs joomla web site ? Possibly with a better user experience, you get to use your joomla siteâs responsive bootstrap HTML template layout, which looks great on any mobile device, tablet, or computer screen.
You seem to ask 2 different questions. In your 2nd question, you ask about a global case user i.e. someone who can create/list/update any/all cases in SuiteCRM. This is not functionality of AOP. The closest to this is an âAccountâ user which can be set against the contact which allows that portal user to view all cases for the related account.
If itâs a blank screen on the joomla side, then itâs straightforward to troubleshoot.
Set some PHP values in your SuiteCRM folderâs php.ini file:
error_reporting = E_ALL
; & ~E_NOTICE
; & ~E_STRICT
log_errors = On
display_errors = Off
display_startup_errors = On
error_log = /home/myusername/public_html/crm/php_error.log
; You'll have to adjust the error_log path to match the path to suitecrm folder on your web hosting account.
Click on the âCreate new caseâ menu item on your companyâs joomla site, fill in your info, submit, blank screen, then have a look at the php_error.log file immediately.
It should contain details about why the Joomla AOP module failed to create the new case in SuiteCRM.
Ok. I will try that. we have another concern as well
Currently when creating a new case in joomla, there is subject, Type, priority, Description.
How can i add more fields to joomla ->new cases. I can add new fields in SuiteCRM->Cases using the studio
To add the fields to the Joomla AOP component, you would need to modify the component files as the component does not automatically update fields when added to SuiteCRM.
A nice, modest enhancement for the Joomla AOP component, would be for it to automatically retrieve all fields (including custom fields) from the SutieCRM Case module, and present them for the Joomla user to fill in.
1b. Some fields should be auto-filled based on the logged in Joomla userâs data, for example, name. Other fields automatically filled based on context, for example, date should be set to current date and time.
The option should also be provided to display a list of all open and closed cases, and details on any open or closed case.
Also, one click to reopen a closed case, and add a follow up comment or message to a customer support case worker.