I've been trying to set a customer object's priceLevel in NetSuite via c# to null/blank/empty value, but NetSuite seems to ignore it when I set the priceLevel to null, or to a new RecordRef with nothing further set.
When I manually set a priceLevel in the NetSuite web app to "blank" it appears as priceLevel = null when I read the customer object back in c#. But I am unable to manually set the priceLevel to null/empty/blank in code.
customer.priceLevel = new RecordRef();
or
customer.priceLevel = null;
Don't seem to work. NetSuite maintains the current non-null setting of priceLevel.

