RunBase::description Method [AX 2012]

Gets the description of the class.

client server public static ClassDescription description()

Run On

ClientOrServer

Return Value

Type: ClassDescription Extended Data Type
The description of the class.

This method should be in every class. It is used by the batch system to display which class is being used.

client server static ClassDescription description() 
{ 
    return "Description of my runbase"; 
}
Show: