"Aras.Server.Core.ItemNotFoundException" When transitioning from "In Work" to "Preliminary" with ECO Express's WF Activity
Hi Community I'm having an issue and I'm hoping the community can help me solve it! In normal ECO Express WF of the Creator's operation goes to " Start--> Preliminary --> In Work" ,but what I'm trying to do is " In Work --> Preliminary" In other words, moving the workflow back one step. Therefore I'm using the following peice of code for dynamic voting of workflow : Dim sbVoteXml As New Text.StringBuilder("") sbVoteXml.Append("<Item type=""Activity"" action=""EvaluateActivity"">") sbVoteXml.Append(" <Activity>{0}</Activity>") sbVoteXml.Append(" <ActivityAssignment>{1}</ActivityAssignment>") sbVoteXml.Append(" <Paths>") sbVoteXml.Append(" <Path id=""{2}"">{3}</Path>") sbVoteXml.Append(" </Paths>") sbVoteXml.Append(" <DelegateTo>0</DelegateTo>") sbVoteXml.Append(" <Tasks />") sbVoteXml.Append(" <Variables />") sbVoteXml.Append(" <Authentication mode="" \ "" />") sbVoteXml.Append(" <Comments></Comments>") sbVoteXml.Append(" <Complete>1</Complete>") sbVoteXml.Append("</Item>") Dim itmVote As Item = Inn.newItem() itmVote.loadAML(String.Format(sbVoteXml.ToString(), sActivityID, sAssignID, sPathID, In_REVIEW)) itmVote = itmVote.apply()However, I got the error "Aras.Server.Core.ItemNotFoundException"...The "Preliminary" activity state is "closed", which may be the cause, but I don't know how to solve it. Do you know how to move the activity back one by using a server method etc.? In addition, should I think about "PE_ChangeItemTransition" too?(This Aras's standard method perform validation of Change item(ECN, ECO, etc..) which situated in state or promoted to another state)Could someone please let me know why this error is happening. I will be happy to help you with other information as needed. Thank you.1.7KViews1like1CommentAssociating EDRs with ECOs
I’m working with Innovator 11.0 SP15 and I have installed the Product Engineering 11.0R4 add-on and I’m working with Express ECO and Express EDR items. When I create an EDR, I try to click the ‘Link for ECO’ link to associate an ECO, but it has no effect. Also if I go into an Express ECO and items to it’s Impact Matrix, I am not able to modify or add anything under the EDR Grouping. This has left me unable to create any associations between EDRs an ECOs. Is there another way to do so?1.7KViews0likes0CommentsCant promote or release item because it is used on the ECO that initially released it
So I am evaluating ARAS for use and ran into a problem where I cannot release a part either manually or through an ECO. The error basically tells me that the part is used on the ECO that released it to rev A. It is now rev B, preliminary. Any idea how I can resolve this?1.5KViews0likes0CommentsECO simpllification
Hi, I simplified the Express ECO workflow. start-->submit-->draft changes-->review-->close change I am using the Express ECO lifecycle : new--> in planning--> in work -->in review--> released there is no problem for parts from Preliminary to Released. But when I try to change a released part, for Express ECO "In Work" state, the part does not go the "In Change" state. I think a confusing situation occurs but I can not find the solution. thanks Duygu1.9KViews0likes0CommentsInBasket Task Configuration
Hi all, we use SP9. Users want to see the "title" or "Affected Item" of Work Item in the InBasket main grid. I investigated the InBasket Task item and Express DCO item type for example. But I could not manage it. Is there a way to do that? thanks Duygu2.1KViews0likes0CommentsHow to add completion notification automatically in Express ECO when Express ECO is saved?
Hi Expert, I tried to create C# code to to add completion notification automatically in Express ECO when Express ECO is saved. var new_Compeletion_notification = inn.newItem("Express ECO Notification", "add"); var exp_eco_id = this.getProperty("id",""); new_Compeletion_notification.setProperty("source_id" , exp_eco_id); new_Compeletion_notification.setProperty("owned_by_id", "8CC42C5770DE42A898EAEBF55091B824"); Item result = new_Compeletion_notification.apply(); But, the result is -1. Would you please help how to do this? Thanks, Expert!1.7KViews0likes0Comments