• How can I wait for the result of aras.evalMethod when the called Method opens a dialog?

    Hi community, I have a custom button inside Form that leads to a custom Method. This Method calls a second client Method with aras.evalMethod. The second Method does a few checks and then opens a "confirm" dialog. User have to press OK or cancel the…
  • Compatibility of IOM.dll with .NET Core 8

    Hello Innovators, I am currently trying to integrate the IOM.dll with .NET Core 8. Has anyone successfully managed to get it working? If not, are there any recommended workarounds or alternative approaches? Looking forward to your insights. Best…
  • How 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…
  • How to get more specific error details from getErrorDetail() ?

    Hi community, we can use getErrorString() and getErrorDetail() to catch error information from failed queries. getErrorString() only contains a short description, while getErrorDetail returns the short-description + some long text + some XML content…
  • update a part's extended property through the iom

    hello, i have been able to update the extended property of a part through aml but i'm looking fo a sample code to understand how to do it with iom(innovator object model) thanks, Lucas
  • apply PE_createNewRevision from client method

    hello, My initial goal is to have a confirm pop up when using the action to create a new revision.(for parts) I have an action that run a simple client method like this: if(confirm("creation of new major revision")) { //here i want to launch the…
  • Aras.OAuth.Model error when trying to connect using IOM.dll in a .Net Core app

    I'm trying to integrate the IOM.dll into a .net core application and I get the error below. "Could not load file or assembly 'Aras.OAuth.Model, Version=12.0.0.21092, Culture=neutral, PublicKeyToken=524d880b05474146'. The system cannot find the file…
  • Populate the WBS Elements for corresponding Activities2 in a project

    <AML> <Item type="WBS Activity2" action="get" select="name" where="WBS_Activity2.related_id IN (SELECT id FROM INNOVATOR.select_activities('9CB5E2CBBBDB1728B01882'))"> <Relationships> <Item type="Activity2" action="get" select="related_id(name)…
  • Set the property of type item to null value if the item is null

    I am setting a property of type item using the setPropertyItem from JavaScript code as below: var Item = innovator.newItem("Material", "get"); Item.setAttribute("select","id"); Item.setProperty("id", gridRow.entity.ExistingVariantMaterialId); Item =Item…
  • Retrieving Related Items

    I need to take a "Requirement Document" item_number, find all the related "Requirement Document Requirements" and their "Requirements". Looking at the solution for Unit 8 in the v12 Developing Solutions guide I got a pretty good idea how to do this…
  • using the SQL item type as a view

    Querying a SQL view I built in SSMS from an Aras server method: string SQL_View = "innovator.my_custom_sql_view"; string SQL = "select * from " + SQL_View; Item SQL_qry = inn.applySQL(SQL); This is quick for me because I do a lot in SQL, but I know…
  • XML Parser Error

    Former Member
    Former Member
    When I use applyAML, I got this error. But my AML is correct. An error occurred while parsing EntityName. Line 8, position 67.System.Xml.XmlException: An error occurred while parsing EntityName. Line 8, position 67.
  • Method ondue

    Hi, I have a doubt. There are two methods that we must program in the innovatorServer service that runs on the server side: Send Email Reminders: used to execute reminders (onReminders) Check Escalations: this is to execute the scaled activities.…
  • Workflow Activity Completion

    Former Member
    Former Member
    I am trying to complete workflow assignment with AML but it is acing weird. My request xml looks like given below: <Item action="EvaluateActivity" type="Activity"> <Activity>DE33049EBA694267A44CA41A002E7C51</Activity> <ActivityAssignment>99E2CFE208154E4FBD70E75DE6AB4B74…
  • Error while creating a Project from ARAS.IOM api

    Former Member
    Former Member
    Hi, I am trying to create a Project using Aras.IOM API. I have given all the mandatory fields values, like target start date, target finish date, project name etc.... but still error is thrown: <SOAP-ENV:Envelope xmlns:SOAP-ENV=" ">schemas.xmlsoap.org…
  • IOM TypeInitializationException error with Login

    I have been trying to use IOM on 11SP9 but I'm unable to get this code working... // url = "">myserver/InnovatorServer"; url = "">myserver/.../InnovatorServer.aspx"; var myConnection = IomFactory.CreateHttpServerConnection(url, db, user, password…
  • How can I get the IOM SDK 11.0?

    I couldn't find IOM.dll file which is referenced in 11.0 of the Programmer's Guide. "A .NET version of IOM.dll can be found in the \Utilities\Aras Innovator <Version> IOM SDK\.NET directory on the CD Image and may be copied to another location and referenced…
  • Is it possible to extends & Override the Default methods in Aras?

    Former Member
    Former Member
    What are the core model/methods? How is core isolated so that it cannot be changed? What methods are exposed and can be extended?
  • Unable to set permission_id using AML as well as C# code

    Former Member
    Former Member
    I am trying to change the permission for Part object but getting errors. Here is the AML I am using to change the permission. <AML> <Item type="Part" action="edit" where="item_number='CPR-002'"> <permission_id>708662930B5B484A98C088859500CC42</permission_id…