workflow

Getting "task is currently locked" error for SharePoint Workflow created with SharePoint Designer

I am creating a simple workflow using SharePoint Designer that triggers when a user uploads a new Document to a library. This workflow assigns a task to multiple users and then waits until those tasks are complete. Once they are complete it then assigns another task to different users and then waits until those tasks are complete. It rep...

Workflow restart at specified activity

I'm using Workflow Foundation. I have a requirement to allow administrative users to restart a workflow at a particular activity. This might be the case if a user forgot to do something during some data entry at that activity and needs to go back in and fix it. Is there any way to do this? It seems I'd need to set the ExecutionStatus of...

Building a very custom application upon google applications and enterprise - CAN it be done?

Hi guys - I think I haven't been able to define my question properly. I've been doing a bit of reading on google applications and the idea of integrating their applications such to form a complete product. Especially after reading case studies of small companies shifting to google and 'customising' google applications. Basically I have ...

Do Sharepoint Workflows have to 'block' the UI whilst processing?

'Block' in the sense that the user is shown the "Workflow is starting" page while the workflow runs. Is there a model for 'asynchronous' workflows where a potential long running workflow trundles away reporting its progress to the history list and maybe informing the originator that the process has finished via email. History list and ...

Show Color on WrkStat.aspx Page

On the WrkStat.aspx page I would like to add emphasis to the status of each approval stage. e.g. I want to show "Approved" in green and "Rejected" text in red. I tried editing the page in SharePoint Designer but it gives an error about application.master. Does anyone know how to add color to this wrkstat.aspx page or any custom workfl...

Accessing Workflow History List

Is there an easy way to access History list, than to type URL? ...

Using a ReceiveActivity in a Sharepoint Workflow

Hi, I've made my first little workflow in sharepoint and I am trying to access it from the outside using a ReceiveActivity. I have created a WCF svc file with <%@ ServiceHost Debug="true" Factory="System.ServiceModel.Activation.WorkflowServiceHostFactory" Service="SharePointWorkflow.MyWorkflow, SharePointWorkflow, Version=1.0...

Long running stateful service in .NET

Hi, I need to create a service in .NET that maintains (inner) state in-memory, spawns multiple threads and is generally long-running. There are a lot options - Good-old Windows Service Windows Communication Services Windows Workflow Foundation I really don't know which to choose. Most of the functionality is in a library used by t...

Help a CRUD programmer think about an "approval workflow"

I've been working on a web application that is basically a CRUD application (Create, Read, Update, Delete). Recently, I've started working on what I'm calling an "approval workflow". Basically, a request is generated for a material and then sent for approval to a manager. Depending on what is requested, different people need to approve t...

TFS 2010 build template failing to open in designer - how to fix?

I can open the DefaultTemplate.xaml that was installed as part of our TFS 2010 RC setup. I created a copy of this template called ApplicationTemplate.xaml and modified it slightly, using the workflow designer in Visual Studio. Now, I can no longer open ApplicationTemplate.xaml. When I try, I receive many errors like the following: Er...

Code reviews for larger ASP.NET MVC team using TFS

I'm trying to find a good code review workflow for my team. Most questions similar to this on SO revolve around using shelved changes for the review, however I'm curious about how this works for people with larger teams. We usually have 2-3 people working a story (UI person, Domain/Repository person, sometimes DB person). I've recommen...

Drupal workflow action access integrated with taxonomy access control?

I am building a DMS for our intranet and use a taxonomy hierarchy because we need access control that way. All company locations manage (upload,edit) their own documents but should be able to access all. This is inherited to the child terms and works fine. Additionally we want simple 3-step workflow (draft,published,archived). So i intr...

Why does SharePoint Workflow Project in VS 2008 get modified every time it's opened?

The same goes for the workflow source files -- every time I open the project or go to the source file, it's indicating (by the asterisk) that the file has been modified. Which means two things: when closing VS, I always get the "Project has been changed, do you want to save changes?" prompt. It's annoying but I can live with that. Mor...

What IDE setup and workflow is used for OSGi development?

I made quite a few easy OSGi test projects in Eclipse RCP. My typical workflow would always be: Make 3 different projects: APIproject, Clientproject and Serverproject Edit the MANIFEST.MF of APIproject to export the api package Edit the MANIFEST.MF file of Clientproject and Serverproject to add the required API package Choose "Run as.....

Progressing Alfresco workflows through web script

I have an Alfresco document reference; what I'm looking for is a way to access workflow attached to that document and finish it (or progress it to the next transition) through Javascript. Almost every example on the web shows how to start workflow, and from the dashlet I could call task command processor (/alfresco/command/task/end/[/tr...

Dependency Property not getting updated value via ActivityBind

I have a Sequence Activity which holds two activities (Activity A and B), the input dependency property for Activity B is bound an output dependency property of Activity A. However, when I run the sequence activity, the Input for activity B is never updated and just uses the default value of activity A's output. My question is: is ther...

SharePoint workflow SendEmail - check if the mail was successfully sent

I have created a sequential workflow for use with a SharePoint List. In this workflow i send an email using the SendEmail activity. Later in my workflow I need to know if the mail was successfully sent, so I tried using this condition: success = sendEmailStep1.ExecutionResult == ActivityExecutionResult.Succeeded; But that does not ...

Sharepoint sequential workflow error ( sometimes )

Hi there , My problem is We create 3 approval stage workflow with Vs 2008 for sharepoint 20007. This workflow finds managers from the active directory and assing one task for each manager. Sometimes , after second task creation , we have an error something like "workflow-XXXX cannot be started sharepoint workflow history. If this erro...

SharePoint Workflow: how to update the item without triggering the workflow again

I have a SharePoint workflow which is running whenever the item changes. The workflow communicates with an external REST service. If the service returns a string, I want to update one of the field values with that string. Unfortunately, this update will trigger another instance of the workflow for this item once the current workflow term...

What permissions does an approver need to edit and approve a document?

If an Approval workflow assigns a task to approve a document to a user, that user receives an email which prompts them to: review the document, and modify if necessary edit the task to show as approved Does being assigned the approval task automatically elevate the user's permission levels in order to allow them to carry these action...