Tag Info

Hot answers tagged

2

You will not be able to do this without at least a small impact on performance, and generally this is a bad idea. It is important to understand that when scheduling your timer jobs, if the previous job is still running it will skip a cycle. Since the scope of this setting is not just for the one workflow, you have to understand it can have far reaching ...


2

Try to close SPD and clear its cahce before adding. The cache is located here: %APPDATA%\Microsoft\Web Server Extensions\Cache %USERPROFILE%\AppData\Local\Microsoft\WebsiteCache UPDATE1: It has become much clear after comments. The cause of your issue is the fact that you added fields to a list, but not to content type. As your workflow is reusable it only ...


1

I dont know why your getting the comma in the first place! you realy need to debug your code and see the varibles in real time to assess where its being placed! a work around if its an issue and you cant fix it you can use this: private string removeComma(string com) { //return the last character of , int index = value.LastIndexOf(","); ...


1

Just a small, but very important addition not related directly to your question (as it was already answered by Thantos). There is an error in your code. You should never dispose SPWeb object obtained from SPContext.Current.Web (you don't need the using operator). Here is an article about it: Disposing Objects


1

If you have already setup the approval workflow for the wiki site then you should make sure to enable the Content Approval for your wiki site. By default this is turned off and as such users with read access will see everything even if the items are still in draft phase. So what you need to do is enable content approval first and in the content approval ...


1

In SharePoint designer 2010, we can certainly copy the content of the workflow mail. Here is the way to do it: Click on the email action in your workflow (it means it should be selected). Next go to the advanced properties in the ribbon, if you click that "Send an Email Properties" dialog box will be opened. In that dialog box, there will be a row called ...


1

Running something five time as often will off course have impact on the performance. But it is only by measuring the performance prior to,and after, a change in the interval that you will now how much and in what ways. Because how your specific SharePoint installation is what really matters, therefor there is no single answer like "Yes by so and much".


1

http://technet.microsoft.com/en-us/library/cc262787.aspx#Workflow here are the limitations for using Workflows in SharePoint 2013 according to Microsoft. As you can see for example: Published workflow definitions per web site: 1,000 per web site Supported The maximum supported number of published workflow definitions per web site is ...


1

Please add your feature manifest to the question. You find it by double clicking your feature and at the top select "Manifest". From your warnings it seems like the feature manifest is corrupt. An easy fix should be to recreate the feature and readd your project items to it. Also there is a warning about using different version of an assembly. Make sure ...


1

I finally found the answer. It turns out, workflow not recognizing "Start Time" is a common problem! All we need is a workaround. For reusable, content type-specific workflow, we can solve this problem by the following. Create a new column in the content type (Event or your own new content type) of type "Calculated from other columns" (I was using ...


1

You can do looping in SharePoint 2010 workflows in code but not in SharePoint Designer. To handle this step I would create a custom workflow activity to handle adding the tasks. Then include that custom activity in the SP designer workflow. Here is a walk-through for creating a custom activity


1

I have seen a similar issue in the past that as due to an errant SharePoint Designer workflow that would double in size each time it was invoked. The workflow was up to almost 1GB before we were able to stop it. Microsoft was never able to find the issue but we had to remove all traces of the workflow before the problem fully went away. The performance ...


1

You need to add a column to the first calendar that stores a unique key of any related item in the team calendar. You could use the SharePoint ID of the first calendar, for example. Add a column to the Team calendar called "ParentID". Let the workflow find an item with that ParentID = current Item ID in the Team calendar. If that item is found, the workflow ...



Only top voted, non community-wiki answers of a minimum length are eligible