• How to convert an item to List ?

    Hello, I'm working with ARAS for few years now. I'm sending AML queries and receiving ITEMS back. Every case requires a new method of deciphering the data using getProperty or getPropertyItem calls. Is there any way to convert any item to array…
  • [Part Classification] How to create AML to add classification for Part

    Hi everyone, As my picture above, I want to use AML to edit Part and set value Item Class, Class Path and some value like m_Capacitance Uni, etc. I'm just a newbie in Aras. So please help me or let me know some keywords to resovle this issue. Thanks…
  • How to search for 'Yesterday'?

    I want to find all part Items with a created_on date of Today - easy. Now I want to Save this search to the TOC so users can run it daily - not so easy. I am trying to search for "Yesterday" in a date field, using AML. this: <Item type="Part" action…
  • Search Parameter with date time

    I have condition parameter search for ItemType Part like this (modified_on > 2019-04-11T00:00:00 and modified_on <= 2019- 04- 20T00:00:00) Case 1. When I new item AML to search <Item type="Part" action="get" select="*" where="[Part].modified_on &gt;…
  • Translating AML to Server-Side Code

    In previous blog posts, we've covered how to query the Aras Innovator server using AML requests sent via an external service like Nash or InnovatorAdmin . In this blog post, we'll be covering how to query the server with C# Item objects defined in the…
  • Is there a way to write a server event that adds relationships by creating aml

    Former Member
    Former Member
    I have a form that I need to add relationships to initiatives and I want to create those relationships when the user saves the form. The Bold aml is what i want to add. "<Item type="Action Plan" typeId="22E5726BF58743B4AEEA018086F2AD6E" id="A5966C1DA4D5447A9A937FBED748233E…
  • Advanced AML Topics

    Be honest—are your users sick of playing PLM games with you? Perhaps this will help. It’s Santa’s PLM Naughty or Nice List, and of course, he checked it twice. Rest assured it’s been validated. Open and published APIs? If you think using multiple…
  • Special AML Actions

    In addition to the standard actions like Add, Unlock, Update, Delete, etc, Aras also provides a number of useful special actions OOTB that can be called through AML. In this blog post, we'll go over what some of these actions do and how to format the…
  • AML Basics

    The Adaptive Markup Language, sometimes referred to as Aras Markup Language, serves as the backbone of Aras Innovator. Almost every action that a user performs in the client sends an AML request to the Aras Innovator server to process the business logic…
  • Writing a Command Line Tool for Aras

    More and more customers want to operate their own DevOps processes, and whenever you do recurrent data migration tasks it's handy to have easy access to the SOAP/web service interface to send AML. Today we have our own interface embedded in Aras which…
  • How to search for a property Attribute in AML?

    In AML: I would like to search for an Item of type Action, with a Property hum_project_id <Item type="activity2" action = "get" select="hum_project_id"> <id>00004C85E3B74A7D995A48B536924853</id> </Item> I would like to change this to search the Item…
  • AML New User Password

    Hi, I would like to create new users with user password by AML in Batch Loader. I have done this but password in Innovator is not added/updated. <Item type="User" where="login_name='@1'" action="merge"> <login_name>@1</login_name> <password>@2</password…
  • Group Identity Member AML

    How can I add members to a group identity with AML code using Batch Loader? I appreciate your comments.
  • Use multiple "like" conditions in AML query?

    Former Member
    Former Member
    Hi, I have: setType("Part"); setProperty("permission_name", "New %"); setPropertyAttribute("permission_name", "condition", "like"); var item = apply(); How do I change this to use multiple "like" conditions? I want to express something like:   "permission_name…
  • Change property value on client side

    Former Member
    Former Member
    Hello, Im trying to change the value of a property in a Javascript method, but the changes dont apply, i tried : var inn = aras.IomInnovator; var item = inn.getItemById("ITEM_TYPE", "9A78BB7E5EC340018DE26D604CB92041"); item.lockItem(); item.setProperty…
  • AML Incorrect syntax near

    Former Member
    Former Member
    Hi ! This AML got ERROR "Incorrect syntax near 'Mold' ". www.dropbox.com/.../2017-08-14_11h47_44.png <Item isNew="1" isTemp="1" type="iq Mold Acceptance" action="edit" where="iq Mold Acceptance.id='2A4871E1511241E19E300EF92DD5B0C1'"> <Relationships…
  • join the data of multiple item type using aml

    Hi, I am new to this platform. Suppose I have an item type Part with two properties that is part ID and Part Name  and the other Item Type is Supplier with properties partID and Suplliers wherein for one partID there can be multiple Suppliers. Is there…
  • How can I get the itemtype all property name?

    Former Member
    Former Member
    I want to get the itemtype all property name. What api can I use ? Thanks.
  • AML throws Aras.Server.Core.AmbiguousCriteriaException

    I'm trying to update the datasource of a property to the correct datasource in our test and production environments, but without the use of ID's because that's what caused the problem I'm trying to correct in the first place, the id's for (for instance…