I added some custom columns to SOOrder in a customization project (under Database scripts) and they’ve been created in my database correctly in the SOOrder table. I’m also able to view/modify these columns in the PXCachExtension with my C# code. However, when I run a SQL query in SOOrder on these new columns, they always return as NULL.
Question: How do I save updates to these new fields in the database?
I’ve tried the following without luck:
Base.Document.Update(Base.Document.Current);
Base.Document.Cache.Update(Base.Document.Current);