Name Approval Task

Hello,


Is it possible to change the name of the Approvalblock (Task).
Try to Set the ATask.Name but no luck

How/Where are you changing ATask.Name? Where does ATask comes from? What kind of object is it?

Where do you want this "Name" to be reflected?
 
Usually if you have a reference to a task block, you access the task name this way:
TaskBlock.Task.Name := 'task name';
 
or if you want to change subject (more usual):
TaskBlock.Task.Subject := 'subject';
 
or if you want to change the text displayed in the workflow diagram
TaskBlock.DefaultTextCell.text := 'text';
 
so I'm not sure what do you mean by "no luck".