Rework Path for Parallel Activity
Hi, I have a Workflow with automatic activity that enables 5 parallel activity. If one activity assignee select Rework path, how can I restrict other activity assignee to vote ? In other words, out of that 5 parallel activity, if one goes to rework then remaining all should go to rework path. I tried override path but seems it is applicable only for 1 activity with multiple approvers. Thanks, GK29KViews0likes14CommentsWorkflow - Error
Hi everyone... I have an error with my workflow. I am using Aras 11.0 SP9. When i create an instance of ItemType, It flow over my custom workflow. In my workflow i defined as creator submit to the reviewer. After review process, if he reject means it will again come to creator. Creator will resubmit. Error coming while i am resubmitting... It shows as "Conversion from type 'DBNull' to type 'String' is not valid." i can not resubmit to reviewer. How to resolve this issue? Regards, Sathishkumar C.19KViews0likes11CommentsLog changes made by Batchloader on part history
Hi. When I create and then release an ECN, I can see some descriptions and comments if I go to Views/History. However, I would like to find a way to also add some description on the History of the part when I use the batchloader to update any part properties. Is there a way to accomplish this? Also, I am wondering if there is a way to also add comments when a manual change has been made (let's say, a manual release of a part, or manually promoting a part due to unforeseen circumstances). Thanks in advance! PMateo18KViews0likes10CommentsError for the New Workflow for Components
Hi, I would like to simplify the Express ECO workflow for "component" classification Parts. I created a new Express ECO workflow by saving as the original. I am using an internal method to get different workflows for different classifications. So I defined the new workflow for the "Components" in the method. I deleted "In Planning" activity in this new workflow. However, I get the below. I can not understand what the exact error is and how to fix it. "Aras.Server.Core.ItemIsLockedException" thanks Duygu17KViews0likes10CommentsRestrict Workflow path to one Identity
Hi, In my work flow I have a stage with several path's, one of them is called "Fast Track Approve" How can I set so that path only is valid for the CM /Admin identity? It would have been nice if Aras had possibilities to set permissions/Identities on path, But it looks like this must be solved by a method. So I need a method to check user vs identities and then have the method to be run as a pre-method for that path Regards//Mikael13KViews0likes10CommentsIs it possible to associate two or more workflows to the same Item type ?
Hi I am new to Aras. My question is: Is it possible to associate two or more workflows to the same Item Type? At the time of initiating the workflow, how one can pick one of the several workflows? Secondly, using code is it possible to pause a workflow for some time (say 4 minutes) before it executes the next step? Thanks, Ambuj12KViews0likes13CommentsConnection of 2 different workflows
Dear Community, I have a question regarding the connection of 2 different workflows. I built a workflow of 'Parts' and another one for 'Documents'. 'Parts' and 'Documents' are two different ItemTypes and are connectd through a relationship 'One Part can have many Documents'. The Workflow of 'Parts' can be defined as follow: The Workflow of Documents is represented as follow: Now, what I was trying to achieve is that once the activity 'Revision' is carried out in the 'Parts' workflow the 'Document' workflow should be opened and tasks sent to my InBasket. This is because, I want my employees to check if my documents related to a part need to be reviewed and revised once the latter has been revised. I know that I could extend the Parts workflow, however, I want to avoid that. I tried assigning the Document Workflow as a Subflow of the Parts 'Revision' activity and implementing the promotion with the Relationship Parts-Document as the ItemType. I added the Document Lifecycle and Workflow in the Relationship ItemType and in the Document ItemType. However, nothing seemed to work. (PS: the two workflows work fine independently) How should I proceed? I would be very thankful for any help. Best regards, Florian12KViews0likes5CommentsDynamic Workflow voting
I am using the following peice of code for dynamic voting of workflow : StringBuilder voteXml = new StringBuilder(""); voteXml.Append("<Item type=\"Activity\" action=\"EvaluateActivity\">"); voteXml.Append(" <Activity>{0}</Activity>"); voteXml.Append(" <ActivityAssignment>{1}</ActivityAssignment>"); voteXml.Append(" <Paths>"); voteXml.Append(" <Path id=\"{2}\">{3}</Path>"); voteXml.Append(" </Paths>"); voteXml.Append(" <DelegateTo>0</DelegateTo>"); voteXml.Append(" <Tasks />"); voteXml.Append(" <Variables />"); voteXml.Append(" <Authentication mode=\"\" />"); voteXml.Append(" <Comments>{4}</Comments>"); voteXml.Append(" <Complete>1</Complete>"); voteXml.Append("</Item>"); Item result = inno.newItem(); result.loadAML(String.Format(voteXml.ToString(), arrActivity, arrActivityAssignment, Path, Paths, "Done")); result = result.apply(); However there are some validations on the pre transition method of an activity, as long as the validation passes the method runs fine. However in case of an error message , the respective workflow activity is getting closed (it is supposed to remain active). Could someone please let me know why this is happening. Thanks.11KViews0likes4Comments