In PersonWantsOrg table, is there any Object event for Delegation ? 9.2.1

In the PersonWantsOrg table (version 9.2.1), is there any object event for Delegation?

I see different object events for granted, order granted, and escalation, but I'm confused about which event corresponds to delegation.

If there is no specific event for delegation, my question is: how can we detect a delegated request in the process chain? in personwantsorg

  • If I understand your question correctly, the 'Delegation' and 'Deputy (temporary)' product requests could be filtered out by a generating condition

    Value = "QER-ITSHOPORG-DELEGATION-PR".Equals($UID_ORG$, StringComparison.OrdinalIgnoreCase)
    Value = "QER-ITSHOPORG-SUBSTITUTE-PR".Equals($UID_ORG$, StringComparison.OrdinalIgnoreCase)

    select * from PersonWantsOrg where UID_Org in (select UID_ITShopOrg from ITShopOrg where Ident_Org in ('Delegation', 'Deputy (temporary)')

    Or your could place your process on the Delegation table or do something in the PWO table dependent on the Delegation table.
    Example see process: VI_Delegation_KeepMeInformed (9.2) or QER_PersonWantsOrg_Delegator_KeepInformed (9.3)
    select * from PersonWantsOrg where UID_PersonWantsOrg in (Select UID_PersonWantsOrg from Delegation)

  • If you are referring to the delegation of an approval step (or adding additional approver in an approval step), the events AddInsteadOf and AddAdditional will be fired for these use cases for the PersonWantsOrg object.