How to name parameter form for SysOperation batch job task in d365?

647 Views Asked by At

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

1

There are 1 best solutions below

0
Mahmoudi MohamedAmine On BEST ANSWER

you must add this method :

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