All Tags »
Destinations (RSS)
Showing page 1 of 2 (16 total posts)
-
Hello,
I'm coding my own worklist. For each worklist item I want to know the destinations of the activity (as determined by the destination rule). I can't find a property in the K2 API, so now I'm trying to populate a datafield with the destinations in the destination rule code. Can I use an activity datafield? If not, I have to use a ...
-
When you say 'with users in K2', what do you mean? K2 gets its users from a security provider--out of the box ActiveDirectory or SQL tables. But there are other choices. You could maintain lists of authorized approvers in many different ways.
Let's take an example. You could create a SharePoint list of authorized users for ...
-
There are a couple of ways to do this, and this is a fairly common situation. Arduk is on the right track. You can use the SharePoint Search event to search for items within a particular list. The matching list items are stored in a repeating XML node. Repeating XML nodes can be used as destinations for client events. ...
-
I'd like to be able to use a different datasource i.e. SQL to hold the users. Then, depending on certain datafield values, I'll send the process instance to a or many users that are queried for based on the criteria.
I'm having a tough time getting to the destination user part of K2ROM, if it even exists.
Does anyone have any ...
-
Hello,
I have an approval infopath form and directly after this form event I like to update a smartobject (within the same activity) putting in the destination user. The activity has a role for the destination user - so I like to find which person has currently approved.
Is there a K2 field which I can use?
-
Hi
I'm having a problem getting my destination slots working how i'd like. I have a role which has several users. The role is set as the destination. I'd like for a user within that role to be able to open an item, then cancel it and still have it available to all the other users in the role. However, as soon as one user submits the ...
-
I have a process that needs to branch in various ways after the initial submit of an InfoPath form. We are using 2003 with MOSS. I was hoping to just be able to access the InfoPath data through the line rules and provide the routing that way. Is there an easy method to get the InfoPath values and use them in the destination rules or do I need to ...
-
I am working within the K2 Web Designer in MOSS and I am finding it difficult to dynamically set an approver. I know this is used more for business analyst but I wanted to know the upper bounds of what a user have the ability to do.
I have been trying to add the destination user as part of a column in the document library but with no luck.
If ...
-
japergis:The reason why it is going to ApprovedStep is because it is the last line of code. I think you need to do the following.
for (int i = 0; i < K2.ActivityInstance.Destinations.Count; i++){ if (K2.ActivityInstance.Destinations[i].DataFields[''Action Result''].Value.ToString() == ''Declined'') { ...
-
As per the title of this post, is this possible?
K2.ActivityDestinationInstance.XmlFields[''MYINFOPATHFORM''] seems to get me a copy of my form for the activity destination instance, but it's blank!
is it possible for me to get to the instance of the form that the destination user will open. I want to be able to add some content to the form for ...
1