I’m now getting this compilation error:
'SOShipmentEntry' does not contain a definition for 'OrderList' and no accessible extension method 'OrderList' accepting a first argument of type 'SOShipmentEntry' could be found (are you missing a using directive or an assembly reference?)
So I noticed that it was moved to SOOrderExtension in 2025R2. However, the graph for this is incompatible with SOShipmentEntry:
PX.Objects.SO.GraphExtensions.SOShipmentEntryExt.SOOrderExtension docgraph = PXGraph.CreateInstance<PX.Objects.SO.GraphExtensions.SOShipmentEntryExt.SOOrderExtension>();
This is the compilation error that I get:
The type 'PX.Objects.SO.GraphExtensions.SOShipmentEntryExt.SOOrderExtension' cannot be used as type parameter 'Graph' in the generic type or method 'PXGraph.CreateInstance<Graph>()'. There is no implicit reference conversion from 'PX.Objects.SO.GraphExtensions.SOShipmentEntryExt.SOOrderExtension' to 'PX.Data.PXGraph'.
Question: how do I create an instance of PXGraph with this new extension?