0

I have created a batch job using the SysOperation framework, I want to set title of the form which shows the parameters of the job. How can I do that?

The title is already shown is the name of the service class and the entry point method. This is the dialog enter image description here

Nastaran Hakimi
  • 695
  • 1
  • 16
  • 36

1 Answers1

0

you must add this method :

protected ClassDescription defaultCaption()
{
    ClassDescription ret = 'your caption';
    return ret; 
}