Browse By Tags

  • Update all generation of an object at once with AML

    Hi community, I am trying to modify a property on all the generation of an item. Thus I am trying to merge those two requests 1) Modify the latest generation without changing the generation : <AML> <Item action='merge' type='Part' where="[Part…
  • How to build an aml request using a request in a request ?

    Hello Aras Community, i am would like to perform this SQL request but in using AML : Innovator _innovator = this.getInnovator(); StringBuilder sql = new StringBuilder(); sql.AppendLine("SELECT ID, ***_code, config_id, state, Major_Rev, Generation…
  • Can't do a bulk ALM code input.

    Hello, not sure if anyone is having this problem but I seem to not be able to do a bulk item creation with AML. I'm using Nash which has worked before but when I put this code in for example: <AML> <Item type ='Part' action ='add' > <item_number>…
  • Include relationship when exporting ItemType?

    Former Member
    Former Member
    Why aren't my RelationshipTypes on my custom ItemType exported when I run Aras's export.exe program? It renders it useless if it doesn't include *everything*.
  • AML where condition based on keyed name

    Hi community, I am trying to transform a where condition based on id into a where condition based on the keyed name or item_number Outside a where condition it would be < source _id> <Item type="Part" action="get" select="id"> <keyed_name…
  • How to use a tree grid view to create an ASP.NET menu tool

    Former Member
    Former Member
    Hi, I would like to create a web form application ASP.NET to comunicate with Aras throught the IOM api. In Aras I created a query that I use for the tree grid view. The tree grid view contains the menu structure (with the main menu items and all levels…
  • AML search to return only the count of object corresponding

    Hi community, I have a request to get from an AML request only the number of item corresponding to the AML request. In Odata and SQL it is ok but I cannot find the equiavlent. I precise that I do not want to create a method to count the items…
  • AML problem using action='update' (in order to modify an item without changing generation)

    Hi I am facing a problem with an AML expression. <AML> <Item action='update' type='myItem' where="[myItem]._title='myItemName' and [myItem].generation='1' "> <myItemProperty> <Item type="myItemProperty" action="get" select="id"> <keyed_name>myItemPropertyName…