Skip to main content

Hello All,


Is it possible to use two Default client events in one Activity, with different Web Page URL and with different conditions?


I mean, If a activity has two default client events, and first client event Web Page URL abc.aspx  and other Web Page URL is xyz.aspx, two different aspx pages. if i can send this two mail on different conditions, how can i do it?


 Thank you

Just use 1 client event and put in condition in your code on which URL to send to the user in this system generated code.

    strURL = strURL.Replace("{SERIALNO}",K2.SerialNumber) 

    K2.AddWorklist("ASP",System.Web.HttpUtility.UrlPathEncode(strURL)) 


Kishore,


Do you mean you want two different destination users to each have a client event showing different pages at the same time?  If that is the case, you could split the workflow into two parallel branches, each with a client activity.  The parallel paths would join at some future activity that uses a preceeding rule to sync things up.


 David


Reply