Hello,
I have a SOLine custom field with PXSelector, how can I rename the column Customer Price Class to Price Code inside the selector?

In Sales Price screen (not customized), its name was Price Code.

I already tried using ARSalesPrice.priceCode in the code, but it shows empty value.
Here’s my code,

Best answer by Naveen Boga
Hi @tomwhitfoot Here is the small piece of code you need add to rename the field.
Please find the screenshot and code here.
Source Code:
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
public PXSelect<ARSalesPrice> DummyView;
[PXMergeAttributes(Method = MergeMethod.Merge)]
[PXUIField(DisplayName = "NAVEEN Sales Price Rec")]
protected virtual void ARSalesPrice_CustPriceClassID_CacheAttached(PXCache cache)
{
}
}
