Version-21.217.0035
Hi,
am trying to make vendor field always enable
i tried by adding workflow to the package and also programmatically written row selected event to make enable


Version-21.217.0035
Hi,
am trying to make vendor field always enable
i tried by adding workflow to the package and also programmatically written row selected event to make enable
Hi
Attached customization package for your reference. Please deploy and verify once.
Hi
Could you please try below code.
protected void CROpportunityProducts_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
if(InvokeBaseHandler != null)
InvokeBaseHandler(cache, e);
var row = (CROpportunityProducts)e.Row;
PXUIFieldAttribute.SetEnabled<CROpportunityProducts.vendorID>(cache, null);
}
Hope, it helps!
Regards,
Sweta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.