How can i delete an appointment (execute task) ?

How can i delete an appointment (execute task) ?
Best answer by Roel
Hey Matteo,
Yes, it can only be done in the IAM Global Settings for now. Ideally this setting would indeed be in the extender settings next to the other appointment tasks. But upgrading these extender settings is harder than it seems so for now this is what it is.
So these settings have to be added in all of your customer IAM's. To make this easier you could write SQL code for this in the Post Sync script which is executed after synchronizing to IAM. This can be added in the 'Post synchronization code’ tab under Deployment Package in IAM, e.g.
insert global_configuration_extended_property
(
global_configuration_id,
extended_property_id,
property_value
)
select
'default',
'DeleteAppointmentTaskScheduler',
'<task_name>'
where not exists
(
select 1
from global_configuration_extended_property
where global_configuration_id = 'default'
and extended_property_id = 'DeleteAppointmentTaskScheduler'
)
The <task_name> can of course differ for each customer and also the implementation of the task can be various between customers, because we only set the name for the task, not the implementation for the task.
I hope this helps.
Kind Regards,
Roel
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.