Hey team,
I'm trying to run a simple batch job using an example giving online but it is giving an error saying:
"The specific class is not fully designed for use in the batch Job form.Execution might provide unexpected results " and
"Numbers could not be generated because a number sequence reference is missing".
Please tell me where is it going wrong
My code is:
class AssociatesBatchJob extends RunBaseBatch
{
public void run()
{
info(strFmt("AssociatesBatchJob .run at %1"
,DateTimeUtil ::toStr(
DateTimeUtil ::utcNow())
));
}
public container pack()
{
return conNull();
}
public boolean unpack(container packedClass)
{
return true;
}
}