• Transfer a property value to another item's property

    Hi, I'm working with AML to update the Data in aras innovator. i'm stuck because i can't seem to transfer a property from one item to another. I have 2 items A and B. let us say that item A is a part and item B is a document. item A has a property…
  • RE: Hide Classification Values (in the Classification Tree) based on Criteria

    Hi ShrutiS / AngelaIp I know this is late reply but Yes this can be archived by below code. Please let me know if you have any questions. const type = this.getType(); if(type === "Document") { parser = new DOMParser(); let xmlDoc = ""; xmlDoc = parser…
  • Can the value (integer) used to increment the [sort_order] property value assignment be configured/changed to a new value?

    Community, Does anyone know if I am able to configured/changed the value (integer) used to increment the [sort_order] property value without implementing code? Thanks Scott
  • How to disable delete relationship button based on parent item state?

    I know this question has been asked multiple times and I have reviewed all the ones that had answers. None of them seemed to clearly lead me in the right direction. I feel what I'm trying to do is a pretty basic use case. I'm trying to prevent affected…
  • Item action permissions based on item state

    Hello, Is there a way to restrict permissions on an item Action based on the Item state. Gray out the action if the Item state is 'Preliminary'. Enable the Action if the state is 'Released'.
  • RE: Retrieving "label" values from "list" type properties

    If you look at the data model, there is no relationship between a property and the list its value would have been picked from. The only place the list is tied to an item is on the UI. Once you pick the list item, it's value is stored in the property it…
  • Show property of a relationship item on the parent item's search grid

    Hi, Here is the use case I am trying to implement - Item A is the parent item and Item B is the related item. Assume Item AB is the relationship item between the 2. On Item AB I have a few properties (let's say prop1, prop2 prop3) defined and I want…
  • How to calculate a value of property for a child item using properties from parent item and relationship item?

    I am new to Aras development and I am facing a problem now. I am trying to create a Grid Event within a relationship. I have 2 item types and a relationship type connecting them, which creates the 3rd item types. ItemType1 (Parent Item) has a property…
  • RE: How to use a query to get distinct values from a item table

    I remember your SQL question. I am not sure if it was you or some user community member, but what had confused me most were that people called SQL from client side. I didn´t know this was possible. From client side it seems not to be possible to get the…
  • changing permissions for existing Items (Documents)

    We've a classification of Documents that we've setup to have a special set of permissions. We used the solution presented in the following topic to achieve that: SUPPORT Q&A - Permission based on Class Structure However, before we made this adjustment…