workflow

Active vs. Running Workflow

落爺英雄遲暮 提交于 2019-12-11 03:15:03
问题 At SharePoint Saturday in Lisle, IL this weekend, Robert Bogue said there's a difference between active and running workflows. I've looked on the web, but can someone clarify? If I can have up to millions of active workflows on the server, why can I only have 15 or so running workflows per server? 回答1: Yes, there is a difference: "Running" Workflows are all which currently are doing something (i.e. executing an activity). "Active" Workflows are simply all which are "running" but currently are

git: more efficient way to do this

China☆狼群 提交于 2019-12-11 02:19:42
问题 This is my normal workflow with git-svn: create a branch for an issue commit after doing some work on branch checkout master svn rebase checkout branch rebase master checkout master merge branch dcommit My goal here is to keep my history in a straight line, and also trying to minimize the headache of merges. Is there a way to do this with less steps? 回答1: There's no need to do your rebase in the middle, and certainly no need to swap to the master branch to do so. My workflow achieves the same

How to do Activiti workflow integration with JSF application

孤街醉人 提交于 2019-12-11 02:19:06
问题 I am new to Activiti workflow. I just wanted to implement a JSF application with activiti workflow with out maven dependency. I am using JPA for databases connectivity. How to do it? 回答1: activiti-cdi might be the keyword you are looking for. It makes the integration with (among others) JSF pretty easy, see for example this tutorial: http://www.bpm-guide.de/2011/09/17/build-your-own-activiti-task-explorer-with-cdi-and-jsf-2/ 回答2: There are different tools to implement workflows in JSF. Is

Sitecore Workflow __OnSave Command

。_饼干妹妹 提交于 2019-12-11 02:16:31
问题 I'm updating workflow process in Sitecore. As shown in the screenshot, I added "__OnSave" command under Approval state. I guess it means when user saves the item in Approval state, the state will change to Draft state. But, it is still in Approval state after saving. What is the issue?? 回答1: Actually __OnSave is a command, not an action. I'm not sure if Next State of this command is used at all. You need to click on the command button to execute the command, and __OnSave button is hidden by

What happens to recurring workflows once the async service is restarted?

给你一囗甜甜゛ 提交于 2019-12-11 01:38:34
问题 Our org is planning on basing parts of our business model on the premise of recurring workflows in CRM 2011. However, we sometimes run into an issue with a backed up workflow queue, or for some reason need to restart the server (update rollups, etc.), or in some other way find we have to restart the CRM's async service. What would happen to any workflows in the "waiting" phase in this scenario? I see the workflow in the AsyncOperationBase table with the "waiting" statuscode ; when the service

workflow c# expression properties window displays snippets

醉酒当歌 提交于 2019-12-11 01:10:42
问题 I have been building workflows using VS2012 and .NET 4.5. However every now and then when I try and enter a C# expression in the editor window the intellisense does not pick up any variables or namespaces in the project. Instead it just lists code snippets available! It take a few attempts of opening and closing the window before I get the editor to behave as expected. Also, even though I am then able to enter the right expression, the designer will still flag an error because it cannot find

understanding the tree view in apache airflow

你离开我真会死。 提交于 2019-12-11 01:06:00
问题 I setup the dag from the https://airflow.apache.org/tutorial.html as is, the only change being that I have set the dag to run at an interval of 5 minutes with a start date of 2017-12-17 T13:40:00 UTC. I enabled the dag before 13:40, so there was no backfill and my machine is running on UTC. The dag ran as expected(i.e at an interval of 5 minutes starting at 13:45 UTC) Now, when I go to the tree view, I am failing to understand the graph. There are 3 tasks in total. 'sleep'(t2) has upstream

How do you reset the workflow status of a purchase requisition from completed to submitted programatically in X++?

送分小仙女□ 提交于 2019-12-11 00:52:41
问题 MS Dynamics AX 2009: I need to do this from the Purchase Order Screen, so I only have the Purchase Requisition number available from the PurchLines Table. Your help would be really greatly appreciated as there is nothing yet on the net available (that I can find) and there are missing classes in the AX 2009 Tutorials. All helpful answers will definitely get an upvote from me. Edit: Purpose is to force the existing workflow to re-execute on the Purchase Requisition from "Submitted" stage when

git: updating the current branch

最后都变了- 提交于 2019-12-11 00:46:44
问题 There are 2 git repositories, A and B On both there is only a master branch, and both are locally checked out and being worked on. I am pushing into B's master branch from A and I receive this message: warning: updating the current branch warning: Updating the currently checked out branch may cause confusion, warning: as the index and work tree do not reflect changes that are in HEAD. warning: As a result, you may see the changes you just pushed into it warning: reverted when you run 'git

SharePoint Workflow with replicatorActivity and onWorkflowItemChanged

喜你入骨 提交于 2019-12-10 22:16:44
问题 Has anyone had success with adding an onWorkflowItemChanged Activity inside a replicatorActivity? It seems to only fire when outside the Replicator. Scenario is the following: Several users are assigned a task inside the replicator. If the Workflow Item is modified then we want to cancel all the tasks and assign new ones based on the change that was made. Problem is that onWorkflowItemChanged doesn't get fired when placed inside the replicatorActivity. 回答1: Yess, there is a solution (a