Part Number removed from ECO during mid workflow
A user has mistakenly removed a part number that was previously in a "Released" state from an ECO and now the part has multiple generations in a preliminary state. I need to correct this issues so that all previous versions of this part # is attached to the ECO and that only the latest generation of the part # is in a released state. Can you please provide steps for a fix?8.1KViews0likes5CommentsECO Validation
Good day all. I am trying to set up a validation (C#) for a field to make sure it is completed before moving to the next step in the Workflow Process. I have seen some information for validating a checkbox in C# and some form of validation with VB (I don't know VB). I can't seem to get this to work. The coding I have tried either stop everything or don't stop anything. I added the method to the Workflow Map Path as a Pre Method. I would appreciate any help with identifying what I have missed. Thank you. Change Request - sm_DEMO_NDR (it is a testing ground for me) Property - sm_change_end_state Innovator inn = this.getInnovator(); Item controlledItem = this.apply("s_Get Controlled Item"); string is_completed = controlledItem.getProperty("sm_change_end_state"); if (is_completed =="") return inn.newError("Must be complete!"); return this; Innovator inn = this.getInnovator(); // Set up the query Item. Item qryItem = this.newItem("sm_DEMO_NDR","get"); qryItem.setAttribute("select","sm_change_end_state"); //qryItem.setID(endState); if (qryItem = "") return inn.newError("Please select appropriate End State."); return this; Innovator inn = this.getInnovator(); Item endState = this.newItem("sm_DEMO_NDR","get"); string state = endState.getProperty("select","sm_change_end_state"); if (this.endState == "") {return inn.newError("Please select appropriate End State.");};Solved3.5KViews0likes2CommentsJS event when ECO form is saved?
Hi, Is it possible to listen to some kind of event to know when the ECO form has been saved? I have an HTML field in the ECO form, where I have put a <script> tag with JavaScript code within. I want that code to execute again after the form has been saved. Is that possible?2.3KViews0likes1CommentChanges Pending checkbox still showing after ECO closed
Getting some really weird behavior on a few parts (only a handful) where after an ECO has been closed, the Part and CAD record still show the "Changes Pending" checkbox checked. We have been running into some situations where the CAD gets re-released but the older, Superseded version of the CAD remains on the Part Record BOM instead of the latest, released version floating into place where it is used.2.2KViews1like1CommentReverting revision in ECO process
Hello all, I am currently looking for a solution , that would revert revision of affected item if the change process has been denied at some point. i.e new ECO has been issued, new revision for itemtype "Part" has been made A -> B, changes to BOM have been made, on next activity due to some special cause approval of changes has been denied. This should return affected item to it's previous state , revision A. Is anyone aware of a method, that would solve this issue? Some help would be very appreciated. Thanks! Eimantas1.8KViews0likes1CommentECO Workflow tasks according to Project Item type
Hi, I want to relate Express ECO with Project Item type. I will define the Review assignment for Project Manager. Then the workflow task is created for Jack (Project Manager of A Project), or for Mary (Project Manager of B Project). How can I achieve this? thanks Duygu1.8KViews0likes0CommentsECO Closed, But Workflow is in Start
Good day all. I am new to ARAS and have been going through how our system is set up. There is a lot of customization done to the database by the previous contractor. Currently I have ECOs that have been marked as Completed, Canceled, Released, etc., but the Workflow is still in the Start status. When I try to step through the Workflow I am given a message stating the ECO is not in the correct state. How do I fix this problem? Thank you for your help.1.7KViews0likes0Comments"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.7KViews1like1CommentHow to find ECR, ECO, EDR associated with PR using API GET call?
Hi, I need the data for all the PRs and ECR, ECO, EDR etc associated with the PR. By associated I mean the ones that show in the "where used" section of PR and not the relationships. In other words, what is the "where used' equivalent in a GET call? I then need the properties of the Affected Items under each ECR, ECO, EDR. I can get the properties of the relationshipships. GET call in Postman: https://nmg.dev.aras-cloud.com/staging/server/odata/PR?$expand=NMG_PR_AffectedItem This only gets the Affected Items under PR, I can get other relationships and their properties but the issue is there isn't a relationship between PR and ECR under PR item typeSolved0Views0likes2Comments