Limit Product Item / Category access by team

We support multiple businesses on our CRM.  We are working to implement the Quotes module and I would like to limit the visibility of various Product Items by Team.  I would prefer to use Product Categories as the field to apply the Team's permission but could do it at  the part level as well.

I do not see Teams as an associated module with Product Catalog.  Is it possible to limit visibility to Product Items or Categories by Team?

Thank you.


Bob

product catalog  team team-based permissions

Parents Reply
  • Hi Priyanka Kishor,

    You mean team visibility is not working at all even after assigning teams to Product records?

    If so, please check if you have overridden the product template bean class and have set 'disable_row_level_security' property to false as advised by André Lopes above:

    This is not the enough once ProductTemplates' __construct method sets by default:

    $this->disable_row_level_security =true;

    Modify custom product template bean construct method with following content:

    public function __construct() {
        parent::__construct();
        $this->disable_row_level_security = false;
    }

    Let us know if this helps.

Children