sharepoint-workflow

How to get the share point designer email workflow log details in a list?

↘锁芯ラ 提交于 2019-12-11 05:15:45
问题 In my application share point designer is using to send emails.What i want to know that, after sending the email to the receiver the email details like From & to address, email sending time , subject of mail will recorded & need to save in to other list. Is it possible? please help me to solve the requirement or share me the steps. Thanks in advance.. Sreenath E 回答1: I would recommend creating a variable for each of the items that you need to record in the list. You can populate each variable

How to send the Assignment Email with a link to the task in it SharePoint 2013 Visual Studio Workflow

一曲冷凌霜 提交于 2019-12-11 04:48:43
问题 I have developed a Visual Studio 2012 workflow for SharePoint 2013. I am trying to find a way to simply send a link to the actual Task in the Assignment email. I have created a variable and set the "TaskItemId" in the output sections of the properties to that variable. I then reference my variable in the body of the AssignmentEmailBody property. When the email gets sent the TaskID is null. In sharepoint designer there is a "Start Task Initation Process". I am guessing it creates the task

The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator

喜你入骨 提交于 2019-12-11 04:01:46
问题 I have infopath form with SharePoint designer approval workflow. I am showing some details on that form. but when I have more data in SharePoint List it is giving bellow error "The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator" I guess Infopath form is getting all the data from the list instead of particular row. can any one please suggest me to filter on current item ? 回答1: Resolution: Ensure to follow the

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

Invoke SharePoint Workflow after EventReceiver

筅森魡賤 提交于 2019-12-08 18:58:27
i got a question regarding sharepoint workflows and event receivers. i got an event receiver that is setting metadata on an element. after that, i use a workflow to copy item metadata to a list. unfortunately the workflow does not copy the metadata set by the event receiver. i think because it is executed before the event receiver. is there a possibility to change the order, so that the workflow will execute after the event receiver? the receiver ist bound to the ItemAdded and ItemUpdated Events i a syncrounous manner. Thank you for your help! Patrick You can use SPWorkFlowAssociation to run

Invoke SharePoint Workflow after EventReceiver

点点圈 提交于 2019-12-08 09:19:38
问题 i got a question regarding sharepoint workflows and event receivers. i got an event receiver that is setting metadata on an element. after that, i use a workflow to copy item metadata to a list. unfortunately the workflow does not copy the metadata set by the event receiver. i think because it is executed before the event receiver. is there a possibility to change the order, so that the workflow will execute after the event receiver? the receiver ist bound to the ItemAdded and ItemUpdated

Sharepoint Out of the box Approval Workflow Approve/Reject comments issue when programmatically altering it

。_饼干妹妹 提交于 2019-12-06 17:02:38
问题 I have a re-usable out of the box sharepoint approval workflow 2010, and I am programmatically approve/reject workflow using the below code snippet inside infopath formcode (2010). Hashtable ht = new Hashtable(); ht[SPBuiltInFieldId.Completed] = "TRUE"; ht["Completed"] = "TRUE"; ht[SPBuiltInFieldId.PercentComplete] = 1.0f; ht["PercentComplete"] = 1.0f; ht["Status"] = "Completed"; ht[SPBuiltInFieldId.TaskStatus] = SPResource.GetString (new CultureInfo((int)task.Web.Language, false), Strings

Workflow Current Item Boolean does not work

﹥>﹥吖頭↗ 提交于 2019-12-06 07:02:08
I'm wondering if anyone has run into this situation. I have a 2010 workflow running on a SharePoint 2013 hosted site. I am checking for a boolean field in the workflow. The boolean is set correctly in the list as true and my log statement does in fact show the field is set to true. There are no errors in the log. The code below my IF statement should fire but it never does. What could cause this not to work? If current item:Resubmit equals yes Thanks! jeff I have a very long 2010 SPD workflow with tons of Boolean IF logic. The workflow worked beautifully as I was developing it, but at some

Sharepoint Out of the box Approval Workflow Approve/Reject comments issue when programmatically altering it

喜夏-厌秋 提交于 2019-12-04 22:34:49
I have a re-usable out of the box sharepoint approval workflow 2010, and I am programmatically approve/reject workflow using the below code snippet inside infopath formcode (2010). Hashtable ht = new Hashtable(); ht[SPBuiltInFieldId.Completed] = "TRUE"; ht["Completed"] = "TRUE"; ht[SPBuiltInFieldId.PercentComplete] = 1.0f; ht["PercentComplete"] = 1.0f; ht["Status"] = "Completed"; ht[SPBuiltInFieldId.TaskStatus] = SPResource.GetString (new CultureInfo((int)task.Web.Language, false), Strings.WorkflowStatusCompleted, new object[0]); if (isApprove) { ht[SPBuiltInFieldId.WorkflowOutcome] =

Problem mixing OOTB SPD WFAs and Custom WFAs

百般思念 提交于 2019-12-02 07:09:20
问题 I'm using MOSS (SharePoint 2007 Enterprise), 32-bit, SP2. I've been noticing some odd problems with Custom Workflow Activities which I've developed and am using in SharePoint Designer (SPD) workflows. These actions seem to work correctly, but don't "play nice" with the rest of the workflow (specifically, the root issue was posted at: Timing concerns with Custom WF Activity changing permissions , since that hasn't gotten any responses I've been digging deeper...) To help pin down the problem,