Google 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?6.1KViews0likes2CommentsHow 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.5KViews0likes1CommentSecure Social need Document ItemType
When I use "Secure Social" on my ItemType and when I try to attach a sketch, I have the following error: Failed to get the Document ItemType. If I well understood, secure social needs the "Document" ItemType defined in PLM package. My issue is that this package will install lot of unneeded objects. Is there a way to install on "Document" object and all its prerequisites?3.4KViews0likes2CommentsError while saving Document thru Office Connector
Hi, I'm getting error while saving document thru office connector with normal user, but if I saved Document using root user it is getting saved, I am not able to track from which MSO method I'm getting this error. Please find below Image: Which methods are getting triggered when we save the document thru Office Connector? Regards, Maddy.2.2KViews0likes0CommentsPass a Property to a Search Grid
For our projects we may have a large number of documents and we're considering different ways to handle this other than trying to recreate some sort of "folder" ItemType to assign them to. One concept we have is the idea of either having buttons or some sort of query that would run and display the Search Grid, but with various pre-filled parameters and automatically run the search. Any example would be the following: - Document ItemType has a property of _project which is associated to the ItemType Project - Document ItemType also has properties like _function or _discipline which could be Engineering or otherwise The button would launch the Search Grid, pre-fill the Project with the Project filled out in the grid and pre-fill the _function or _discipline as needed. I've added a button to the toolbar and been able to assign a method to launch the Document Search grid via http://ourserver/innovatorserver/client/?StartItem=Document, but I don't know how I could pre-fill the fields and auto-execute the search. Any ideas on this? Thanks in advance!1.8KViews0likes1CommentHow to batch download and upload files?
Under Documents, Type= Setup Sheet, State = Released, are documents that are in excel and they have to be converted to pdf I guess the first the step woudl be to get the meta data, Document name, ID, Related Files, and File ID. Then loop through this file to download them. But then what would the path be to download this. How do I go about this? Thanks!!Solved106Views0likes5CommentsHow to use getid() method to get id?
In the system the "Id", and "config-id" are the item name. For Document item, the id is the document name(screenshot below). I need the id property, the one that is unique, to be added to the properties of Document item. I have this method but it doesn't work: Item myItem = this.newItem("Document"); myItem.setID(this.getID()); Item results = myItem.apply(); Error is "Error Number: CS0161, 'ItemMethod.methodCode()': not all code paths return a value" Also, once I have this method working what are the next steps. I guess I will have to add this method to the Server Events, event onBeforeGet, correct? Any help is appriciated. Thanks!100Views0likes5CommentsJavascript method to set the default value in search grid?
We need to limit the search results of "Document" item for certain identity. The default value of "Classification" should be prefilled to "General" and should be unchangeable by the user. I was thinking if I can get the current identity of the user and then call a function that would prefill the "Classification" to "General" and make it uneditable. I have a code for finding the identity of the user. I need to know how to target the "Classification" field of "Document" item type in the search grid view thanks!86Views0likes2Comments