I am trying to use process guide to develop a new development. I have created a new activity code as well as work creation process by extending the enums WHSWorkActivity and WHSWorkCreationProcess. And i have enabled the process guide using below code.(for refrence)
[ExtensionOf(tableStr(WHSRFMenuItemTable))]
final class ERAWHSRFMenuItemTable_Extension
{
protected boolean workActivityMustUseProcessGuideFramework()
{
boolean ret = next workActivityMustUseProcessGuideFramework();
if (!ret && (this.WorkCreationProcess == WHSWorkCreationProcess::ERASO || this.WorkActivity == WHSWorkActivity::ERASO))
{
ret = true;
}
return ret;
}
}
with the above code used the process guide is enabled by default but when i open the form and fill up some more fields and save it, i am getting warning below:
i am not getting the above warning for anyone of the custom as well as out of the box activity code its happening only for the new one. I might have missed some setup
And due to this my development is not loading up in below form whsworkexecute(work process)
Thanks in advance