In a custom Acumatica PXGraph class, I have code that tries to insert into a view:
var maintGraph = (EEdiDocTradedMaint)graph;
ediDocTraded = maintGraph.EdiDocTraded.Insert(ediDocTraded);
The view is defined as:
public PXSelect<EEdiDocTraded> EdiDocTraded;
The data being inserted is a custom DAC class instantiated and property values set. The Insert above throws an error that "The required configuration data is not entered on the Customer Management Preferences form". There is a custom numbering sequence for these rows, but it is defined as it should be.
What am I missing to get the Insert to succeed?