Hi,
I have a DMF custom entity class that extends "DMFEntityBase" and uses attribute "[DMFAttribute(true)]"
in the finalTask method I have:
public Batchable finalTask() { Batchable ret; MyClassFinalTask finalTask = new MyClassFinalTask(); ret = finalTask; //TrackCode::insLine("MyClassFinalTask/finalTask"); return ret; }
This code works fine for other custom entities, I am not sure why it would not work in this case.
"MyClassFinalTask" extends "RunBaseBatch"
I have done full CIL, full compile.
Could you please suggest what is going wrong here?
*This post is locked for comments