Browse By Tags

  • 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.