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…
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…
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…
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 >…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…