Change 'Save As' to use part number sequence instead of adding Copy Of in the part number field?
With Aras V11, SP15: For the Part Item type, we have a pattern setup that we want all parts to follow this pattern: PRT-##### and we want it restricted to this length (9). This works. However, when someone does a 'Save AS' or in an Express ECO chooses to renumber a part. we get this error "The given value of type String from the data source cannot be converted to type nvarchar of the specified target column." This is because we've set the item_number length to equal 9 and Aras is trying to create a new part with the number field set "Copy of PRT-#####". We can get past the error by setting the item_number length to 20 but we don't want to do this as people can then create parts that don't match our pattern. Where can we change it so Aras doesn't add the "Copy of" in front of the original part's number: We'd also ideally like it to just grab the next number in our part number sequence. I've been hunting through aras methods but can't find where the "Copy of" is being added. Anyone know? Thanks.Solved7.7KViews0likes4CommentsPSW lifecycle state promotions
Hello, How is the lifecycle promotions for the part submission warrant set up out of the box? I can see that there's a "PPAP Lifecycle" r the PSW. Is it connected to any of the OOTB change management items or are you meant to manually promote the PSW? Are you meant to make your own workflow map for the PSW? It doesn't seem like I can promote it manually either. I'm using aras 11 sp12. Best Regards Rick5.3KViews0likes2CommentsHow to add Previous revision item and remove current from relationship
Hi Experts, I am trying to remove Document which is attached to Part with revision 001 and attach Document with revision 000(old revision). I have created an action on Part Document relationship. I'm getting the old revision item id i.e Document id, after getting this ID I'm trying to create a relationship between Part and Document with below code. var newPartDocRelItem = inn.newItem("Part Document", "add"); newPartDocRelItem.setProperty("source_id",parentPartID); newPartDocRelItem.setProperty("sort_order", sort_order); newPartDocRelItem.setProperty("related_id",oldItemID); newPartDocRelItem = newPartDocRelItem.apply(); But, above code will add the same item i.e item with revision 000 I have also tried this code var newPartDocRelItem = inn.newItem("Part Document", "add"); newPartDocRelItem.setProperty("source_id", parentPartID); newDocItem = inn.newItem("Document", "get"); newDocItem.setProperty("id", oldItem); newPartDocRelItem.setRelatedItem(newDocItem); newPartDocRelItem = newPartDocRelItem.apply(); Still I'm not able to add the relationship with previous revision, Document with 001 revision gets added4.5KViews0likes1CommentWorkflow will not get reset after new revision of part is created
Hello, I am trying to create a new revision of part like this: After Part is in released state, I open it in edit mode, do the changes and save it again so new revision is created but the Task is not created in My InBasket. How to fix it?4.4KViews0likes3CommentsImporting Error: Form with Form Name 'Part' already exists
I've exported the package com.aras.innovator.solution.PLM from my development Innovator v11 SP15 server and I'm trying to do an import to my test server which is also v11 SP15. THis would be the 2nd import I've done to the test server of features developed on the dev server. I'm getting the error "Form with Form Name 'Part' already exists. if I click OK, I then get this error: And the part customization I did on the development server don't appear on the test server. What can I do to get passed this error? Is there a way to form the import? I'd like to replace the Part form on the test server with the one from the development server.4KViews0likes1CommentHow to edit part type in the aras using AML
Hi Guys, I want to update the part type using AML query. I am getting response as success but on UI i am not able to see the changed part type. e.g i want to change part type from "Assembly" to "Commodity" AML query which i am using to edit - <AML> <Item type="Part" action="edit" where="part.item_number ='P10226-1'"> <m_part_type>Commodity</m_part_type> </Item> </AML> Please correct the above AML, i am not able to edit part.3.6KViews0likes1CommentCan I copy the function for "Where Used" under "Views" and use the function as another menu item under "Views"?
For a part, under View--> Where used, I can see where the part has been used. I want to find out which function has the logic for Where Used functionality. I would like to add this function's logic as another menu item under View as Where Used (Advanced) i.e View--> Where Used (Advanced). How do I do this?2.4KViews0likes1CommentOnly alow to select Part "Assembly" instead of all Parts like "Component", "Assembly", "Material",...
Hello everyone, i am new to Aras Innovator (I am using Version 12.0 SP9 Build: 24090). I have created several Parts (Components and Assemblys) and a new ItemType "Test". I have modified the "View" of the ItemType "Test" to select different Parts. Like this: Now i want to modify the selection so that it is only possible to select Parts with the Type "Assembly". Something like this: But the "normal" user shouldn't be allowed to select a Component and only Assemblys. Do you know how to do this? Thanks in advance. Best regards ThomasSolved1.4KViews0likes1CommentPart Lock Unlock Performance issue on the main search grid
Hello Experts, I am using Aras 11 SP15, I am facing an issue while locking/unlocking the part from the main search grid, it is taking around 10-15 seconds to lock the part, I have checked all custom methods on the 'Lock' and 'Unlock' event but all customs methods took 1-2 seconds to execute. Also When I checked in the Network section of the browser, it is around 350 requests. How can improve the performance while locking the part from the main search grid? Regards, Maddy1.1KViews0likes0Comments