Hi All,
I have created a new grid screen which uses the same SOLine DAC and used views are as follows.
public PXSave<SOLine> Save;
public PXCancel<SOLine> Cancel;
[PXFilterable]
public PXSelectJoinOrderBy<SOLine,
InnerJoin<SOOrder, On<SOLine.orderType, Equal<SOOrder.orderType>,
And<SOLine.orderNbr, Equal<SOOrder.orderNbr>>>,
LeftJoin<InventoryItem, On<SOLine.inventoryID, Equal<InventoryItem.inventoryID>>,
LeftJoin<AMProdItem, On<PX.Objects.AM.CacheExtensions.SOLineExt.aMProdOrdID,
Equal<AMProdItem.prodOrdID>>,
LeftJoin<AMBomItem, On<AMProdItem.bOMID, Equal<AMBomItem.bOMID>,
And<AMProdItem.bOMRevisionID, Equal<AMBomItem.revisionID>>>,
LeftJoin<AMBomOper, On<AMBomItem.bOMID, Equal<AMBomOper.bOMID>,
And<AMBomItem.revisionID, Equal<AMBomOper.revisionID>>>>>>>>,
OrderBy<Asc<SOLine.orderNbr>>> SOLineView;
But when I update “Mark For PO” checkbox from the new grid screen it does not update the corresponding “Mark For PO” checkboxes in LineDetails of that SOLine.
Additionally it does not update the POSource field in SOLine and LineDetails as well.
How Can I fix this issue?
Any help would be much appreciated!
Thanks