Add, Export & Import CAD Documents with attachments
Hello, In Aras Innovator 12, I'm trying to experiment with exporting of parts, which are having a CAD Document attached to them (which of course, has a file attached to it). I added the Part, CAD Document, File, CADFiles and Part CAD to the package and did the export process, yet, at the import process I'm receiving the message: [File Item cannot be added.]. I also tried to copy/paste the files from the original Vault to the destination Vault, but got the same message. I tried to move these files with backup operation and it was successful, but as I have to move only a few files, it would be better, if I can solve this with the export/import tool. Thank you! Chris6.5KViews0likes2CommentsGoogle Suite Integration with Aras
Our firm uses google suite applications like google docs and sheets for the documentation purpose. Aras supports MS Office integration very well as it is clear from many videos. Is there a way to integrate google docs and sheets in a similar fashion? Any other open-source office software like LibreOffice or WPS office is supported?6KViews0likes2CommentsHow 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.5KViews0likes1Commenthow to prevent the related item being updated to the source item?
we have a custom Item type called "Buyer" and OOTB item type "Document" There is a relationship type "Buyer Document". So when there is an update with the related Document to the Buyer item, the latest "Document" is getting updated to the Old "Buyer" revision too. how to prevent the item being propagated.? For example : Buyer Doc 1.1 <-> Document 001.1 Buyer document is updated to Buyer Doc 1.2 <-> Document 001.1 Now the Document is updated Document 002.3 and the old Buyer Doc 1.1 linked to the latest Document 002.3. How to stop upward propgation and downward propagation of linkage , we want to do it manually link the respective Document to the buyer doc,4.3KViews0likes1Comment