10.5.3: Running workflow marks it unsaved now?

Since upgrading to 10.5.3, I've noticed that a workflow, after it's been run once, will prompt me to save changes when I close it. It didn't behave this way in 10.5.2, which is where I first created the workflow. It's not a big deal to me, but I'm curious to see if 10.5.2 or 10.5.3 has the correct behavior.

Hmm, I'm haven't tracked it like that, but I have noticed some workflows do that and others don't. I've just shrugged the difference off and figured it had something to do with different actions. Not a big deal to me usually because either I throw out the workflow when I'm done (one time use, don't save) or I save it as an application or plug-in (not run in Automator again). That probably has made it so I really don't come across it that often, or doesn't really affect me. I don't mean to trivialize it, but yes, I've noticed it on rare occasion before the 10.5.3 update.

Similar Messages

  • Changing Permissions on library with running workflows

    We have a document library running workflows. The library is NOT inheriting permissions from the parent site and all documents have broken (independent and different) set of permissions.
    My question is: If we change the permissions of a current sharepoint group in the library from Contribute to Read, would that affect any running workflows in the library? Reason to do so is because we want to prevent some groups from adding new documents.
    Would this procedure break in any way running workflows?
    Thanks,
    Carlos

    Hi Carlos,
    As I understand, you would like to know whether it affects running workflows if we change the permission of the library.
    Per my experience, it depends on the content of workflow. The link below describe the permissions in each level:
    http://technet.microsoft.com/en-us/library/cc721640(v=office.15).aspx And we could tell from it that with Read permission, users are lack of following actions comparing with
    Contribute permission:
    Add Items
    Edit Items
    Delete Items
    Delete Versions
    Browse Directories
    Edit Personal User Information
    Manage Personal Views
    Add/Remove Personal Web Parts
    Update Personal Web Parts
    Please check the running workflows and see if there is any action or condition would use the permission in the list.
    Regards,
    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] .
    Rebecca Tu
    TechNet Community Support

  • How to access properties of running workflow 2013 instances?

    Hi there,
    I am trying to figure out how I can access properties of a running workflow instance. I have created the following PowerShell:
    Add-PSSnapin microsoft.sharepoint.powershell
    $web = Get-SPWeb http://app-72b5c37f94da1d.apps.sharepoint2013.local/sites/appdev/SharePointWorkflowApp
    $wfm = New-object Microsoft.SharePoint.WorkflowServices.WorkflowServicesManager($web)
    $list= ($web.lists|where Title -eq "List1")
    $sub = $wfm.GetWorkflowSubscriptionService()
    $subscriptions = $sub.EnumerateSubscriptionsByList($list.ID)
    $inst = $wfm.GetWorkflowInstanceService()
    $instances= $inst.Enumerate($subscriptions[0])
    $instance= $instances[0]
    $instance.Status
    $instance.UserStatus
    $instance.Properties
    I am not able to retrieve the arguments or variables via this route. Only UserStatus is a valid working option at this point.
    The variables and arguments of the sequence which I have configured via Visual Studio 2013's Workflow Designer, resulted in the following xaml:
      <x:Members>
        <x:Property Name="EenArg" Type="InArgument(x:String)" />
        <x:Property Name="argument1" Type="x:String" />
        <x:Property Name="argument2" Type="InOutArgument(x:String)" />
        <x:Property Name="strArg" Type="InOutArgument(x:String)" />
        <x:Property Name="intArg" Type="InOutArgument(x:String)" />
        <x:Property Name="dateTimeArg" Type="InOutArgument(x:String)" />
      </x:Members>
    None of which are propagated via de Properties collection. 
    What am I missing here?

    Hi,
    To access the properties of a workflow instance, here is a blog with code demos for your reference:
    http://ranaictiu-technicalblog.blogspot.com/2013/05/sharepoint-2013-workflow.html
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • SP 2013 Running Workflow giving Error - Sorry Something went wrong

    Hi,
    We have publish workflow running on a document and we need to cancel/ terminate it.
    On the workflow Page we can see under the "Running Workflows" , the workflow is running. But when we click on that it gives the Something went wrong error message. As we are not able to goto the workflow status page on UI, we dont get option to
    End the workflow. 
    To Cancel the workflow we tried following things -
    1. Powershell command to get the workflow object and cancel it. But using the powershell command- $listItems.Workflows does not give the instance of this stuck workflow. If we start new workflow on that item , it will get added to the count but this stuck
    workflow does not come under its count. So we are not able to get its instance using powershell and cancel it.
    2. Using client side programming we tried directly passing the workflow instance name and terminate it but it gives the exception that "given key was not present in the dictionary"
    string workflowGuid = "91ee281b-3938-45a5-9bb2-8bd128bfa90c";
    var workflowServicesManager = new WorkflowServicesManager(clientContext, clientContext.Web);
    var workflowInstanceService = workflowServicesManager.GetWorkflowInstanceService();
    WorkflowInstance instance = workflowInstanceService.GetInstance(new Guid(workflowGuid));
    workflowInstanceService.SuspendWorkflow(instance);
    Please let us know how to get rid of this stuck workflows.
    prashant

    Hi Prashant,
    According to your description, my understanding is that you want to cancel the stuck workflows in SharePoint 2013.
    If the workflow is designed in SharePoint, I recommend to go to the Workflow Settings of the document library, click Remove, Block, or Restore a Workflow to remove the workflow with the stuck instances and then republish the workflow from Designer to SharePoint.
    Or you can use the code in the link below to cancel all the workflow instances to see if the issue still occurs:
    http://www.codeproject.com/Articles/679628/Easiest-Way-of-Cancelling-All-S
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Running Workflow step in Background & code inside doing Foreground proceing

    Hi all,
    I am extracting an attachment (file) from DMS (document management services: txn: CV02N) to the presentation server in Background Mode.  Again my Function Module is uploading the file in the forground Mode and at this point workflow is giving error about the presentation server. 
    Please can anyone help me if what am doing is wrong, and if yes then what would be the proper solution.
    Thanx in advance.  Points will be provided for sure
    Anand

    Hi Mike,
    Thank you so much for your help. 
    I will try to explain you the problem.
    The problem is I need to extract the contents of file attached to DMS, which is available only as a link, so using the BAPI_*CHECKOUTVIEW I need to download it on the presentation server so that file / attachment will be available on presentation server and then I can upload the file / attachment in SAP and will read its content in internal table.
    Now the problem is I am using above FM in a Workflow method.  Workflow is doing the processing via WF-BATCH which is a background user by default.  Now the question is
    1) How can i get the file / attachement from the link in the DMS in the background mode and again upload it in SAP in the background mode??  (I tried it but the only BAPI i found is given above, which is creating a local file based on the link in DMS)
                                                   OR
    2) How can I run / test the workflow in foreground mode(by default WF-BATCH (system) is running the workflow in background mode).  But then it is always advisable to run the workflow in background mode until an agent assignment (user interaction) is necessary.  And I guess whosoever will run workflow , it will run by system user only, which is background user.
                                                   OR
    Any other solution you can think of.

  • Can't use "Copy Finder Items" after "Run Workflow"

    Create a simple Automator workflow:
    Set just 1 action "Create Thumbnail Images" and save it. I called it "wf1.workflow".
    Now create the second workflow with 3 actions:
    "Get Specified Finder Items" action (choose an image file here).
    ->
    "Run Workflow" action (specify "wf1.workflow" as a workflow, select "Return workflow results", check "Wait for workflow to finish").
    ->
    "Copy Finder Items" (specify any location)
    Now run the workflow. Everytime I get an error.
    The log:
    Get Specified Finder Items completed;
    Run Workflow (wf1) completed;
    Copy Finder Items failed
    * -[NSAppleEventDescriptor count]: unrecognized selector sent to instance 0x113185d0
    The same workflow works fine in Tiger, so I think there is a bug in Leopard Automator.
    Am I right? Is there any workaround?

    I can confirm I got the same results for the workflow, just don't know why as of yet. And then I somehow got it to work.
    I checked the results for each action and they didn't seem unusual. The results of "Get Specified Finder Items" is a single parenthesized text string representing the file's path. The results of "Copy Finder Items" is an alias, but that should be okay.
    So, deleted the thumbnail from the first run, and then ran the workflow again. It got stuck on "Run Workflow" and hung for a while. So I stopped it and removed "Run Workflow", and then added it in again. Presto! It worked, sort of. It didn't copy the thumbnail, instead it copied the original file. I'd forgotten to reset it to "Return workflow results". So, it seems to be something to do with returning the workflow results instead of the action input.
    I'm going to do some more testing.

  • Activation terminates a running workflow.

    Hi,
    i have a workflow package with mutliple Pages in it and a running workflow on this Workflow package. When i use the "Activate"-function in the siteadmin for one of the pages in the workflow package the workflow is terminated. Same for the "Deactivation"-function.
    Is this intended or is this kind of a bug? For my usecase this is not acceptable.
    An acceptable solution would be to remove the page from the workflow package. A better solution would be to disable this behaviour and just let the workflow as it is.
    Is this possible, or is there a good reason why CQ5.5 behaves this way?
    Greetings

    Hi angerwin,
        Once i saw issue with version in workflow step. Technically it should not affect I was just suspecting. Please file daycare and attach all the logs.
    Thanks,
    Sham

  • Read currently running workflow information

    Hi everybody,
    Please let me know if anyone came across a situation where we need to read the currently running workflow information..
    To be precise, I have a workflow which starts a method, which in turn executes code present in an include.. Now, in this include, I need to know whether it was called from the workflow.. (What i mean to say is that, the include could have been called from many places.. like BAdI methods etc.. I need to execute a specific action only if it was called from the workflow.)
    The plan could be something like.. "read all the currently running workflows and get the related information" .. Any idea how????
    Regards,
    Arun B

    Hello again,
    well, as long nobody else runs jobs using this background-user or changes the user-ID of the workflow-system, it'll work fine.
    To be more precisely on the WF-BATCH user, you could also check for the configured name. Anyways, for a quick check/fix you could be fine when using this procedure.
    However it'll not work within work-item execution from dialog-tasks, as then the actual user processed the code.
    So here's the code snippet to determine the workflow user's user-id:
    *Method signature:
    * RETURNING VALUE( RV_WF_BATCH ) TYPE XUBNAME
    *   "User Name of workflow background user
    method GET_WORKFLOW_USER.
       DATA: lv_rfcdest             TYPE RFCDES-RFCDEST.
    *   Read the RFC destination from workflow basic customizing
       CALL FUNCTION 'SWW_WIM_RFC_DESTINATION_NAME'
          IMPORTING
             WORKFLOW_DESTINATION       = lv_rfcdest.
    *   Read the user-ID from this destination
       CALL FUNCTION 'RFC_READ_L_DESTINATION'          "#EC CI_USE_WANTED
           EXPORTING
              DESTINATION               = lv_rfcdest   "#EC CI_USE_WANTED
              AUTHORITY_CHECK           = ' '
           IMPORTING
              USER                      = rv_wf_batch
           EXCEPTIONS
              OTHERS                    = 0.
    endmethod.

  • "Run Workflow" action in Automator does not "Ask for Finder Items"

    So I have a workflow called step_1 that does a bunch of stuff . . . in essence, it "Asks for a Finder Item" and then runs some Python shells and then outputs an Applescript format list {'item_1','item_2','item_3'}
    I'm trying to use this workflow in another workflow so I selected "Run Workflow" in Automator and located my original workflow step_1 but when I run it, the process goes straight through the workflow and doesn't "Ask for Finder Items" so i'm sure it doesn't do anything else in the workflow either.  It doesn't give me an error, it just pretty much bypasses everything within the workflow and it's pretty annoying.
    Any idea on how to get my workflow to work using "Run Workflow" ?

    Never tired Run Workflow before so as as a test I rn these two
    and the Ask for Finder items in the called workflow ran OK.
    Note this was run  from Automator. One thing I did see was that the Ask for finder items window did not come to the front and I had to look under my open windows to see it.

  • Recently upgraded to a Canon Mark 3 and now having issues with my RAW files in Bridge and Photoshop. I am operating with CS4. Photoshop produces an error " Could not complete your request because photoshop does not recognize this type of file"

    Recently upgraded to a Canon Mark 3 and now having issues with my RAW files in Bridge and Photoshop. I have operating with CS4. Photoshop produces and error " Could not complete your request because photoshop does not recognize this type of file"

    Assuming you mean 5D Mark III, Photoshop CS4 cannot directly open raw files from your camera.
    Generally speaking, Adobe stopped updating older versions to be able to read raw files from newer cameras when they released a new major version of Photoshop. Photoshop CS4 is no longer receiving Camera Raw updates.
    You can double check this yourself:
    First you need to determine whether Adobe has released support for your new camera in your version of Photoshop. To do that, look at these two pages. You'll want to find out the earliest version of Camera Raw that can support your camera, then what version of Photoshop can run that version of Camera Raw.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    If you find your camera is supported by your version of Photoshop, you need to download the latest update for Camera Raw. There's more information on how to do that here:
    Keeping Photoshop Up-To-Date
    If your version of Photoshop cannot support your camera, you can download and install the latest version of the free Adobe DNG Converter, which can take your raw files as input and put out DNG format files, which your version of Photoshop can open.
    Photoshop Help | Digital Negative (DNG)
    The DNG converter DOES work, but if you want maximal quality from your raw files (not to mention the convenience and ease of use of directly opening your raw files) you'll want the latest version of Photoshop. Adobe has made substantial improvements in raw conversion quality in recent years.
    -Noel

  • I downloaded and installed Lion on an external hard drive using my laptop which is running Snow Leopard I have now decided that I want to install Lion on my Laptop, but when I go to the App store and click on my purchases it will not download

    I downloaded and installed Lion on an external hard drive using my laptop which is running Snow Leopard I have now decided that I want to install Lion on my Laptop, but when I go to the App store and click on my purchases it will not download again

    Thanks Dirk,
                         Tried your suggestion various ways but it had no effect the download button was still greyed out and the install button would not activate will keep trying to find a solution. I dont want to boot from the external hard drive that has Lion on mainly because it is a usb HD and the connection to my wireless modem slows the connection rate and downloading would take about ten hours

  • "up and running  no message processing until now"

    Hi,
    I am doing a multiline scenario with File Content Conversion. In Adapter Monitor, Message is processed in the sender CC and in the Receiver CC it shows "up and running  no message processing until now"
    Whats mean by this ?. What is the status of my message ? Where I can monitor the message send from sender communication to the Receiver communication channel (If not in SXMB_MONI ?)
    Thanks,
    Ram

    hi,
    check adapter message monitor:
    http://hostname:portnumber/MessagingSystem/monitor/monitor.jsp
    you should see all message over there
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    I encountered the same type of problem. Firefox running terribly slowly and slowing down my entire machine (Core i5 with 256GB SSD). Searching the forums, I found a couple of things about troubleshooting performance issues, one of which was to use '''hardware acceleration''', that is on by default. It was turned on on my PC, '''so I tried deactivating it, and it worked!'''
    So doing the exact opposite as Mozilla support said solved the problem. It is really a pain now to work with Firefox. I'm using it because I have no choice, but I'd recommend IE and Chrome over Firefox... Whatever, the market will decide once Firefox has become to crappy...

  • Canon 1 D mark III announced - now you need LR stacks 10fps - 110 jpeg burst.

    Canon 1 D mark III announced - now you need LR stacks 10fps - 110 jpeg burst.
    See LightroomExtra RSS feed or www.sidjervis.com blog page.
    Key features
    10.1 Megapixel APS-H CMOS sensor
    10 fps continuous shooting for up to 110 frames
    Dual DIGIC III processors
    New auto focus system with 19 cross type sensors
    EOS Integrated Cleaning System
    ISO 3200 (expandable to H:6400)
    3.0 LCD with Live View mode
    Wider, brighter viewfinder
    Sid
    The LightroomExtra home page is right here.

    I think narya.de was being facetious! Sounds like he reviewer is an Mb snob!
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core, Pentax *ist D
    http://donricklin.blogspot.com/

  • Tried to run a CD I had run with Snow Leopard. Now (with Lion) getting a message that PowerPC applications are no longer supported.. How do I overcome this? Thanks

    Tried to run a CD I had run with Snow Leopard. Now (with Lion) getting a message that PowerPC applications are no longer supported.. How do I overcome this? Thanks

    Well Lion does not support power PC applications.  They only way is to upgrade the application, or if your have SL disks, reinstall SL.

Maybe you are looking for

  • Error while generating Text to Speech in XP

    Hi, I'm getting an error when I try to generate Text to Speech from within Speech Management in Captivate 5 running on Win XP sp3 (swedish). When i click on Generate Audio I get the error: "Error occurred while generating Text to Speech Audio for Sli

  • Oracle 11g - Problem in referring ROWNUM in the SQL

    Hello All, We are facing a strange problem with Oracle 11g (11.2.0.1.0). When we issue a query which refers the rownum, it returns a invalid record ( which is not exists in the table). The same sql is working fine once we analyze the table Note: The

  • Data not appear in ME49

    SAP I have problem with RFQ comparision statement sheet ((ME49). I maintained the rate, tax, delevery date, etc. with Tcode ME47 for against all RFQ's. when I take report comparision statement thru Tcode ME49, report comes but in QTY and Rate comes w

  • Why is my mac missing certain fonts and not displaying some pictures, is just a little blue box with a question mark in it?

    When I open documents it always comes up with warnings that I am missing fonts and some cannot be replaced. Also now I am noticing that some pictures are now missing and are replaced by a small blue box with a question mark in the middle. Can anyone

  • Deploy common artifact(XSD,WSDL) to a folder in DB based MDS

    Hi, I work in an environment where there are multiple partitions created in SOA Server and multiple SOA composites deployed on these partitions. What i need to do is We want to create a MDS structure where common artifacts for each partitions are kep