Nintex global task delegation

  • 28 August 2017
  • 1 reply
  • 4 views

Badge +1

Is it possible to read the Nintex global task delegation data? This is required when we have approval system as plain email notifications (no Nintex approval). So before sending the email notification, we need to check if there is any delegation exists. If yes, send the notification to a delegated person. The global task delegations are setup here

Nintex Task Delegation 

http://{site_url}/_layouts/15/NintexWorkflow/DelegationView.aspx 


1 reply

Badge +1

Have found answer to my own question.

There is a table "Delegation" in Nintex config database that stores all the global task delegations. We can use "Execute SQL" action to find out if any global delegation exists before sending email notification. Example query

select delegate, StartDate, EndDate from [NWDBConfig].[dbo].[Delegation] where Username='i:0#.w|domainuser' 

Reply