0
votes
2answers
25 views

Workflow Timer Interval

Can I change Workflow Timer Interval value from default "every 5 minutes" to "every minutes" without impact to performace? Thanks for supprt, Best regards
0
votes
0answers
26 views

Run a SharePoint manual start workflow from a timer job

I have developed a SharePoint manually-started workflow (WF) that send mail to a group of persons entered by the user as an initiation parameter before starting the workflow on an item. Now i want ...
0
votes
1answer
45 views

TimerJob editing workflow and web config - Consuming external webservice

I have a list that is attached to a workflow (State machine, VS2010, SP2010). There is an OnWorkflowItemChanged activity that will check if a column of the list has been changed. If it changed, it ...
0
votes
0answers
159 views

SharePoint 2010 Workflow stuck in starting status?

We have a SP 2010 workflow on a Document Library which sends an email notification out to certain users when a property is changed for a document. This workflow was working fine up until 2 weeks ago ...
1
vote
0answers
66 views

Sharepoint Workflows in background

I'm just curious, I was reading an article here, and in the third paragraph it states "If you didn’t know, there are quite a few workflows that run in the background all the time. " I was just ...
0
votes
0answers
71 views

SharePoint 2010 Workflow Reversing Date Format

I've created a workflow that stores its start date and time plus 10 minutes to a variable and then repeats the process with 20 and 30 minutes. Once in production this will go up to a few days each. ...
0
votes
0answers
113 views

Web Application running on both App server and WFE

I am having an issue with Workflow "Pause for" action where this action never fires. I read this article http://support.microsoft.com/kb/2674684 and it talks about the disabling Workflow server for ...
0
votes
0answers
146 views

Starting Workflow in Timerjob fails sometimes

I wrote a timerjob how at some point creates an item and starts a workflow on that item manually. This works like 4 out of 5 times. When it doesn't work i get this not so cool exception: ...
0
votes
2answers
31 views

Share Point 2007 - Concept of an Agent?

I think I already know the answer to this question, but I'm hoping I am wrong. My background is in SQL, specifically T-SQL alongisde SSMS. I rely pretty heavily on agent jobs for periodic tasks. My ...
5
votes
3answers
986 views

What is downside of reducing the workflow timer job in SharePoint2010 from 5mins to 1 mins

I am working on a project which trigger the workflow in code asynchronously, the default time for the workflow timer job to pick the workflow is 5 mins , I would like to reduce the timer job from ...
1
vote
2answers
262 views

Workflow and timer job synchronization

I have a SP 2010 workflow that prompts information from the users, and a timer job which reads data from a constantly-updated DB. They both add data to another list item that stores the most recent ...
7
votes
4answers
7k views

Trigger workflow daily

Is there a simple or OOTB way in SharePoint to trigger a workflow to execute daily? Maybe through the use of timer jobs? My goal is something that doesn't require the use of a solution or some type ...
3
votes
1answer
3k views

Workflows Auto Cleanup Timer Job or how to remove Workflow Instances?

I have read, that every now and then the "Workflow Auto Cleanup" job runs and cleans old workflow instances which are older than 60 days are deleted (or something along the lines). I have a simple ...
2
votes
1answer
803 views

How do I start a workflow from a timer job?

I need to start a particular workflow in a list from a timer job. Is there any sample code for starting the workflow in the timer job's Execute() method?