Skip to main content

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 @FarhanaM60 ,

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


Hi @FarhanaM60  I have modified the code level changes and workflow changes to enable the VENDOR ID field when it is moved to all the statuses (New/Open/Won/Lost).

 

Attached customization package for your reference. Please deploy and verify once.

 


Reply