Cannot update due date in SharePoint 2010 Approvel Workflow generated Task

Wondering why due date cannot be changed by users with List permissions on a Task which was generated from the built-in Approval workflow.
I can have the workflow set the initial due date. The business process dictates that at times the due date need to be updated on the Task before they are completed (shift to the right or whatever).
The column settings for the due date field do not seem to be set as read only??? why can the not be updated by users/admins?
If the due date must be updated by a workflow how can a workflow be manually be run...like an administrator business process feature?
BTW...this project mandates that all processes are run with OOB settings (codeless).
Thanks
Ok, found the answer to this on another post: click on the workflow status field of the workflow that generated the tasks. Then click "Add or update assignees". Very nice!

Hi,
Thank you for sharing this with us!
Beside the way you mentioned, you can also try to reassign the task from the task list directly. Thus you can enter a new duration for this task and SharePoint will generate a new task.
Thanks
Pengyu Zhao
TechNet Community Support

Similar Messages

  • AR Invoice cannot update due date

    Have SAP 2005 installed with 5 databases. In 4 of the databases we can update the due date on the AR invoice screen (As long as document status is open). On one of the databases we cannot update the field. Logging in as manager in all databases.
    Anyone know what to look for or why this be happening?

    No, I have tested for installments and that does not seem to matter. I should have pointed out that one of the databases this DOES NOT work in has a Netherlands localization. Could it be possible that the Netherlands localizations do not allow update of the invoice due date. It appears that this is the case can anyone confirm this?

  • Sharepoint 2010 Designer workflow Custom Task Form

    Hello,
    could you please help me to customize the WF Task form using SharePoint Designer?
    My requirement is to create the SPD 2010 WF with custom task form where i can add the controls as per the form requirement and I need to add Attachment control too to upload the file on Task Form. 
    Could you please advise me that how can I achieve it using SPD only (Without Infopath form)?
    (Through Infopath its pretty easy to customize the Task Form, but I need to customize it through SPD only)
    Thank You In advance!
    Regards,
    Santosh

    Hi Santosh,
    For your demand, you can  change the workflow task form to aspx pages and than customize the page .You can edit the content type created by the workflow to use the aspx pages :
    Publish the workflow and it will have the task form created .The form name will be like Approval_x0028_25_x0029_.xsn .
    The content type created by the workflow will also have the name Approval_x0028_25_x0029_.
    Open the Tasks list in SharePoint Designer .Find the content type Approval_x0028_25_x0029_and edit it .
    In the Forms section ,you can change the display form and edit form to be aspx pages for the content type  .The workflow task will use the aspx page .I used the default task forms in my test and the URL is like:/Lists/Tasks/EditForm.aspx.
    Save the changes .
    Reference:
    https://social.msdn.microsoft.com/Forums/office/en-US/02615820-ea7d-487d-825b-0a72e300cb59/how-to-replace-custom-aspx-task-form-with-default-spd-task-form-in-sharepoint-designer-workflow?forum=sharepointcustomizationprevious
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to copy Excel sheet data to SharePoint 2010 List?

    Hi,
       I need to export excel data to SharePoint 2010 list. I have created 22 columns in list which are of following Column types:
    Single line of text,
    Multiple line of text,
    Choice
    Number,
    Date,
    Person or Group.
    Now i need to export the excel data to SharePoint list.
    When iam trying to copy data from excel to List , it is showing as "The selected cells are read only".
    can someone guide on this to export spread sheet data to SharePoint list without importing Spreadsheet.
    Thanks in advance.
    Badri

    I've updated the example of using PowerShell to include a Person field (user field) and a choice field.
    The CSV file has the following columns:
    TRIP_NO
    VESSEL_NAME
    FLAG
    AGENT_NAME
    CURRENT_LOCATION
    RPT_DATE
    EMPLOYEE
    EMPLOYEE_TYPE
    #Get the CSV file and connect to the SharePoint list
    $vessellist = import-csv -Path C:\Temp\VesselInPortReport.csv
    $l = (Get-Spweb "http://devmy101").GetList("http://devmy101/Lists/smarInPort")
    #Get the lists EmployeeType field (choice)
    $employeeType = $l.Fields["EmployeeType"] -as [Microsoft.SharePoint.SPFieldChoice]
    #Loop through the items and add them to the list
    $r = 1;
    foreach($item in $vessellist)
    $ni = $l.items.Add();
    #Add the Title, using the rows VESSEL_NAME column
    $ni["Title"] = $item.VESSEL_NAME;
    #Add the "Date Recorded" field, using the csv rows "RPT_DATE" column
    [DateTime]$rd = New-Object System.DateTime;
    if([DateTime]::TryParse($item.RPT_DATE, [ref]$rd)){
    $ni["Date Recorded"] = $rd;
    #Add the csv rows "TRIP_NO" column to the new list items "Trip Id" field (SPFieldNumber)
    [Int64]$tn = New-Object System.Int64;
    if([Int64]::TryParse($item.TRIP_NO, [ref] $tn)){
    $ni["Trip Id"] = $tn;
    #Add some other text properties
    $ni["Flag"] = $item.FLAG;
    $ni["Agent Name"] = $item.AGENT_NAME;
    $ni["Current Location"] = $item.CURRENT_LOCATION;
    #Add user information
    $ni["employee"] = $w.EnsureUser($item.EMPLOYEE); #In this case, the $item.EMPLOYEE value from the spreadsheet is a persons name. Eg. "Matthew Yarlett"
    $employeeType.ParseAndSetValue($ni,$item.EMPLOYEE_TYPE); #In this case, the $item.EMPLOYEE_TYPE value from the spreadsheet is valid choice present in the EmployeeType list field. Eg. "Manager"
    #Update the item
    $ni.Update()
    Write-Host ([String]::Format("Added record:{0}",$r));
    $r++;
    Regards, Matthew
    MCPD | MCITP
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.
    I just added a webpart to the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • How to genetare reports(ssrs) with form library's data in sharepoint 2010

    Hi,
    How to genetare reports (ssrs) with form library's data in sharepoint 2010.I am saving infopath(2010) xml form data in form library.I have 500 and more forms in the form library( more forms can come in future).How to generate reports from this xml data (i
    want to make it automate)? Reports should get updated automatically when any changes made to data and if new form entered in the library.
    Please suggest possible solutions.I can not go for code base solution.( somthing SSIS, BCS or web service ....etc or anything else will be fine)
    Thanks in advance.

    Hi,
    According to your post, my understanding is that you wanted to generate SSRS report with form library in SharePoint 2010.
     In order to use the data stored on the InfoPath form, you need to add the controls on the form to be columns in SharePoint(This is the OOTB way without code).
    You can add the control during the publish process:
    Then when you create the SSRS report using the form library as the data source, you can use the fields just as the fields created in SharePoint.
    There is a tool called InfoPath DB in codeplex, you can have a look at it.
    http://infopathdb.codeplex.com/
    More reference:
    http://sharepoint.stackexchange.com/questions/28825/how-to-query-a-form-library-in-sharepoint-2010
    http://sharepoint.stackexchange.com/questions/38492/reporting-against-a-form-library
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Create an InfoPath Form to Auto Populate Data in SharePoint 2010

    In Anne Stenberg's Blog from 2 Nov 2011 3:00 PM "How to Create an InfoPath Form to Auto Populate Data in SharePoint 2010" she artfully steps through how to create an InfoPath Form to Auto Populate Data. It works but... Jason, another user, 
    wrote whenever the form is opened again either to view or edit, it displays the current users information instead of the value of the person who completed the form in the first place.
    Anne's response was "Hi Jason - I had forgotten I had that problem, too. Change the Form Load rule's condition to
    DisplayName is blank and that should work."
    My problem is I can't find anything other than AccountName in "Select a Field or Group" [GetUserProfileByName (Secondary)] to use in the Condition statement that will correct the problem.
    Any help will be very appreciated.
    Thanks,
    Joe

    Hi Joe,
    I recommend to add one more condition in Form Load to make the form not be populated with current user’s information (You can change Title to another column which should not be blank when users create a new item).
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Document's due date is at 2010

    Hi,
    I want to add a A/R Invoice and its due date is at 2010.01.31. when I click add button, the error message was shown: date deviates from permissible range.
    I've added the 2010-01 posting period, and it still shows the same error. how can i add the invoice with 2010.01.31 due date?
    Thanks...

    Hi!
    Not need of creating new posting periods.
    Open the Current Period and Exten the Due Date to 2010.01.31

  • HT201210 trying to update my phone and it says cannot update due to unknow error any help

    i was trying to update my iphone 4 and it says cannot update due to unknow error any help ?

    Hey alyreed22,
    Thanks for the question. I understand you are having issues updating to iOS 7. The following articles may help you resolve the error message:
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/TS1275
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    Thanks,
    Matt M.

  • HT201210 trying to update my iPhone 4 to latest 5x ios and getting a "cannot update due to firmware not compatible

    Trying to update iPhone 4 to the latest iOS 5, the error "cannot update due to incompatible firmware" prevents install. Any idea on where to find firmware update or resolve?

    The correct way to upgrade the firmware is to first assure that you have the latest version of iTunes, then connect the phone to your computer. Click on the name of the phone in iTunes, then "Check for Updates" on the iPhone Summary screen. It should tell you there is a new version, and ask if you want to upgrade to it. If you are using any other method, or you downloaded a firmware file from a web site, you are asking for trouble.
    The only thing you might want to do is to delete any .ipsw files on your computer before doing the above, in the unlikely event that the update file was corrupted during download.

  • MS SharePoint 2010 Designer Workflow Email - Enhanced Rich Text Field look-up values on HTML email have large spaces

    MS InfoPath 2010 form with RTF (Rich Text Fields)
    MS SharePoint 2010 Custom Library
    MS SharePoint 2010 Designer Workflow Send Email
    http://office.microsoft.com/en-us/sharepoint-designer-help/send-e-mail-in-a-workflow-HA010239042.aspx
    https://www.nothingbutsharepoint.com/sites/eusp/pages/creating-html-emails-with-spd-workflows.aspx
    Hi all of the above work, our question is how to control the RTF (Rich Text Field) look up values to the InfoPath 2010 form in the HTML email?
    How to FORMAT the RTF look up value? in the HTML email
    EXAMPLE
    we have a InfoPath 2010 form published in the SharePoint 2010 custom list library there are 5 RTF fields (Notes1, Notes2, Notes3, Notes4, Notes5) there are other plain text fields, date fields, and other field types in the form
    We use a HTML table to make the email look like the InfoPath form, so when the users fill out the form and they get the email notification everything looks the same.
    Our problem is the EXTRA LINE SPACE in the RTF look up values
    We want to remove any leading spaces, and line spaces between HTML table cells
    Our Workflow has the HTML in a Workflow variable, as you know it does not support remote CSS it has to be in-line style for any formatting we want all cells to have
    valign="top" the email should align at the top of the cell, all field types do except the RTF look up values they make the email look bad and they contain a lot of white space.
    Please test this in your enviroment 
    <table>
    <tr><td>Title:</td><td>[%Current Item:Title%]</td><td>[%Current Item:Notes1%]</td></tr>
    <tr><td>Created by:</td><td>[%Current Item:CreatedBy%]</td><td>[%Current Item:Notes2%]</td></tr>
    <tr><td>Date Created:</td><td>[%Current Item:Created%]</td><td>[%Current Item:Notes3%]</td></tr>
    <tr><td>Modified by:</td><td>[%Current Item:ModifiedBy%]</td><td>[%Current Item:Notes4%]</td></tr>
    <tr><td>Date Modified:</td><td>[%Current Item:Modified%]</td><td>[%Current Item:Notes5%]</td></tr>
    </table>
    I could not update the question below to the proper forum section. that is why i am asking again.
    http://social.technet.microsoft.com/Forums/en-US/a7918bfb-9166-4bdb-828c-132a0c7611e3/ms-sharepoint-2010-designer-workflow-emails-huge-lines-paces-in-rich-text-fields-values-from-ms?forum=sharepointcustomization
    -Isaack

    Hi IssackB,
    perhaps you may try this article:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f8fa2a11-9f74-4dd2-b277-21ce872fdcb2/can-we-add-rich-text-editor-to-the-sharepoint-designer-2010-workflow?forum=sharepointcustomizationprevious
    there are some notes that perhaps you may check:
    Use the same font for all the controls to ensure consistent spacing between rows.
    Choose Size from the Format menu, and then choose To Fit from the menu that appears. This adjusts the size of each control, depending on the font set for the data that appears
    in the control.
    NOTE: The Print Preview and Output To commands use different algorithms for calculating text width; therefore, the text may occupy more or less
    space in the RTF file.
    Reduce the amount of blank space above and below the report controls. Any vertical
    space between the controls is converted to whole lines
    in the RTF file. For example, a
    space of .02 inches can increase to .1667 inches in the
    RTF file.
    Make sure controls on the same output row are not too close to each other or overlapping. This can cause the Output To command to omit the controls or to align the columns incorrectly
    in the RTF file.
    Use the Align command from the Format menu to ensure that a row of controls is aligned properly on the report. If a row of controls is not aligned properly, the Output To command may place the controls
    in different rows, causing extra blank
    spacein the RTF file. 
    and please have a check there are updates for exchange 2013 and will be available with the upcoming release of CU4 for Exchange 2013, that stated the format rtf was saved instead HTML. http://support.microsoft.com/kb/2862739/en-us
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • SharePoint 2010 Designer workflow failing in an Ad hoc manner.

    Hi Friends,
    We have a SharePoint 2010 Designer workflow with 25 approval stages (supposed to run for around 1.5 yrs. ) . We have a consistent problem in the workflow as it keeps failing with message "error occured" at some stages(not uniform) after a users
    tries to submit his Tasks .
    After lot of troubleshooting , we found that all the workflow which is getting failed have a Tasks on which the due date of tasks has exceeded. I meant to say that user is submitting his Task (which is a custom info-path 2010 form ) after the due date of
    the Tasks.
    Can any one suggest if this is supposed to be the Obvious behavior of workflow ? That is ,if the user submits his Task when the due date has passed , the workflow will fail with error.

    Hi Friends,
    We have a SharePoint 2010 Designer workflow with 25 approval stages (supposed to run for around 1.5 yrs. ) . We have a consistent problem in the workflow as it keeps failing with message "error occured" at some stages(not uniform) after a users tries
    to submit his Tasks .
    After lot of troubleshooting , we found that all the workflow which is getting failed have a Tasks on which the due date of tasks has exceeded. I meant to say that user is submitting his Task (which is a custom info-path 2010 form ) after the due date of the
    Tasks.
    Can any one suggest if this is supposed to be the Obvious behavior of workflow ? That is ,if the user submits his Task when the due date has passed , the workflow will fail with error.
    Athar raza faridi

  • Can we change the name of reassign button in sharepoint 2010 approval workflow?

    can we change the name of reassign button in sharepoint 2010 approval workflow?
    Shazil Ali

    Yes, we can change it. Steps are as follows: 1. Create the workflow in SharePoint Designer 2010 2. Use Start Approval Process action 3. Write your logic and all setting as per you requirement and then publish the workflow once. 4. After this, click on
    the workflow name and there you will see the sections as Workflow Information, Customization, Settings, Start Options, Forms. Here you will see a form under Forms section with a name of Approval_x00....... with a type "Task". Click on this form. This form
    is an Infopath form that opens up when a task is to be edited (Task Form). This form will open up in Infopath (provided you have Infopath installed on your system) It may ask you the crendentials for security. 5. The task form will open up in Infopath for
    editing. Click on the Reasign button and in the top left corner in the ribbon section is the field (Label) having text as "Reassign Task". Change this and then save and publish the form.Publish the workflow once again.

  • Strange one day adding to tasks due date (Outlook –SharePoint- MS Project integration)

    Hi,
    I have integrated MS Project 2010 with MS Outlook 2010 via SharePoint. Everything has gone more or less smoothly (as it could be for Microsoft
    J), but finally I got into a strange problem. Strangely enough,
    MS Outlook, while syncing tasks with SharePoint (these tasks are pre-created in MS Project and synced with SharePoint beforehand),
    adds one day to due dates of each of these tasks, e.g. for “Task 1” due date in MS Project and on SharePoint is 20.10.2010, but MS Outlook puts it as 21.10.2010, for “Task 2” due date in MS Project and on SharePoint is 22.10.2010, but MS Outlook
    puts it as 23.10.2010, etc.
    What is a strange trick? I have checked work time, holidays - everything is the same in MS Outlook, SharePoint and MS Project (8-17, Mon-Fri, 8 hours, 40 days a week). What could it be?
    Thanks a lot.

    Hi,
    It seems nobody can reply, so I will reply by myself because I found out the answer. The answer from Microsoft is pretty simple - ha-ha we know about,
    we will work on it, wait, ha-ha. Firstly let me quote Microsoft senior tech answer on the same request 3 month ago:
    "Hello Artur,
    The senior tech got back to me with the following conclusion:
    Outlook is rounding everything set to 12:00 PM or after to the next date because the columns mapped to start date and due dates are only Date columns,
    not date/time columns.
    It is rounding at noon because of the .5 decimal. This can be seen in Excel - 41115.5 = 7/25/2012 12:00 in date/time format whereas 41115.49 = 7/25/2012
    11:45.
    The issue seems to be an expected behavior, the next level of support is working on the same but currently I have not been provided with any ETA, so
    it looks like the issue will take a good amount of time to get fixed.
    I would appreciate your patience while we are working on the issue. I will keep you posted as and when I get an update on the issue."
    Sounds good, does not it? Ok. After asking this question recently I got run-around and finally I found the same question unsolved (see the quotation
    before) more than 3 month ago. I have sent it to Microsoft Tech Support. Look at reply I got from them on 22.10.2012:
    "This issue has been noticed and will be handled by the product team. Once we have any updates, it will be responded to you timely". 
    So the basic function does not work properly, there month passed - no way! Wait until what? I could hardly
    even imagine how Microsoft launched the product with such a bug and is not resolving the problem for months.

  • Task Due date in SharePoint 2013

    Hi All,
    we have an issue where we want some customization or possible turn around solution on SharePoint 2013. i want to know that if we are allocating any Task to any user then we have Start Date & Due Date in Task Form. Here what i want that automatically,
    after 2 Days, Due date column should be freezes/locked (No more changes in that). And if we want to change Due date then can only change 2 times & if we want to change again Due date as 3rd time then it should not allow to change at all & require some
    kind of approval from Management.

    Hello,
    For the limited number of modification of the due date, I would use an event receiver on "itemupdating"  with this kind of logic
    If (Properties.ListItem[«Due Date»] != Properties.AfterProperties[«Due Date»]) //modification of the date
    check the number of modification, if less than 3 , increment the number and continue, if 3 set
    Properties.AfterProperties[«Due Date»]) =Properties.ListItem[«Due Date»]
    here some info about creating event recivers :http://msdn.microsoft.com/en-us/library/gg252010(v=office.14).aspx (for 2010 but the same for 2013)
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • Cannot change Due Date in marketing Documents

    Hello to all
    i have a problem with marketing documents. while they are open-printed, i cannot change the due date. it is grey and read only
    the payment terms has one installments and the localization is Cyprus
    in another installation with localization Italy i can  edit the due date
    do you have any idea about it?

    Hi,
    You may test this solution:
    To change the due date of an installment, perform the following:
    Open the relevant document and choose the Accounting tab.
    Click the orange link arrow in the Installments field.
    In the Installments window, in the Date column, change the required date and choose the OK button.
    To save the changes, in the sales or purchasing document, choose the Update button.  
    it quoted from sap note 1333212 - Changing the due date on installment modifications
    Regards,

Maybe you are looking for