I’m playing around with extending workflows. In this case I’ve added an Action to SOOrderEntry in my graph extension. I’ve created a workflow extension as well. While my code compiles, I get an error displayed on the login screen:
When extending a cache, cross references are not permitted: CustomerOEMods.Workflow.SOOrderEntry_Workflow -> CustomerOEMods.Workflow.SOOrderEntry_Workflow.
The class definition for my workflow class is as follows:
public class SOOrderEntry_Workflow : PXGraphExtension<SOOrderEntry_Workflow, SOOrderEntry>
{
}The definition of my graph extension of SOOrderEntry is:
public class SOOrderEntry_Extension : PXGraphExtension<PX.Objects.SO.SOOrderEntry>
{
}Are these definitions incorrect? I’m following T270 as it covers adding an action to the SOInvoiceEntry workflow.
I’m not sure what I’m missing.