Example, You belong to sales & Marketing team
This team in CRM system belong to Sales and Marketing role
and you are a non-admin user
When you create a report providing by vtiger CRM system(call default report) after that you around to customize your own report before
next and next, final you click on save. System out "Permission Denied",
The following the way to fix this issue:
creating 2 tables and custom report and save again:
CREATE TABLE IF NOT EXISTS vtiger_report_sharerole (
reportid int(25) NOT NULL,
roleid int(25) NOT NULL
)
CREATE TABLE IF NOT EXISTS vtiger_report_sharers (
reportid int(25) NOT NULL,
rsid int(25) NOT NULL
)
This team in CRM system belong to Sales and Marketing role
and you are a non-admin user
When you create a report providing by vtiger CRM system(call default report) after that you around to customize your own report before
next and next, final you click on save. System out "Permission Denied",
The following the way to fix this issue:
creating 2 tables and custom report and save again:
CREATE TABLE IF NOT EXISTS vtiger_report_sharerole (
reportid int(25) NOT NULL,
roleid int(25) NOT NULL
)
CREATE TABLE IF NOT EXISTS vtiger_report_sharers (
reportid int(25) NOT NULL,
rsid int(25) NOT NULL
)
Comments
Post a Comment