Add Restriction Relation customer group with a function c#

I would like add restriction group (CLTA) for the customer with c#.

enter image description here

What function I must use ?

protected void Customer_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
  var row = (Customer)e.Row;
  if (row==null) return;
  PXRestrictionAttribute.
}

Leave a Comment