template runbaseBatch
class IWS_RefreshUnrecievedInvoiceRunbase extends RunBaseBatch
{
protected void new()
{
super();
}
public boolean canRunInNewSession()
{
return true;
}
static IWS_RefreshUnrecievedInvoiceRunbase construct()
{
return new IWS_RefreshUnrecievedInvoiceRunbase();
}
static ClassDescription description()
{
return "Update project invoice ID for negative amounts " + curExt();
}
static void main(Args args)
{
IWS_RefreshUnrecievedInvoiceRunbase runbase;
runbase = IWS_RefreshUnrecievedInvoiceRunbase::construct();
if (runbase.prompt())
{
runbase.runOperation();
}
}
public void run()
{
}
}