<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.aras.com/community/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Klaus Wroblewski さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/klaus_2d00_wroblewskinovero_2d00_com</link><description>Klaus Wroblewski さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Group Identity Member AML</title><link>https://www.aras.com/community/f/development/3629/group-identity-member-aml</link><pubDate>Thu, 15 Mar 2018 09:45:47 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d0d23f16-f397-45e5-9cf2-aabce5e6f341</guid><dc:creator>Klaus Wroblewski</dc:creator><description>How can I add members to a group identity with AML code using Batch Loader?

I appreciate your comments.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Discussion Starter I</title><link>https://www.aras.com/community/achievements/21025ab1-febb-4fb4-a872-d32a921cb45c</link><pubDate>Wed, 06 May 2020 21:37:57 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5f978c57-a820-4bcd-ab9d-0e574e8b4519</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</description></item><item><title>Community profile e-mail address update?</title><link>https://www.aras.com/community/f/community/6203/community-profile-e-mail-address-update</link><pubDate>Fri, 09 Aug 2019 09:35:19 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7195d456-87b8-4ba4-9370-ebe4f66b195b</guid><dc:creator>Klaus Wroblewski</dc:creator><description>&lt;p&gt;&lt;span style="font-size:inherit;"&gt;Hello,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;how can I update my e-mail address to login to this community?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;Best regards&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:inherit;"&gt;Klaus&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AML Basics</title><link>https://www.aras.com/community/b/english/posts/aml-basics</link><pubDate>Tue, 19 Feb 2019 15:00:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:8ab14752-bdc3-4791-b09a-8f802ca9c20d</guid><dc:creator>Christopher Gillis</dc:creator><description>&lt;p&gt;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. In this blog post, we&amp;#39;ll cover the basic structure of an AML request so you can write your own queries.&lt;/p&gt;
&lt;h2&gt;Testing AML Queries&lt;/h2&gt;
&lt;p&gt;As part of this blog post, we&amp;#39;ll be offering a few different sample AML queries which you may wish to test in your development environment. You can do this in a couple of different ways.&lt;/p&gt;
&lt;h3&gt;Nash&lt;/h3&gt;
&lt;p&gt;Nash is a lightweight application available in every instance of Aras Innovator which lets you run AML queries directly against your server. You can access Nash by appending `\Client\scripts\nash.aspx` to the end of the URL you typically use to access your Aras Innovator instance (e.g. http://localhost/InnovatorServer/Client/scripts/nash.aspx). The &lt;a href="/i/projects/aras-homepage/"&gt;Aras Homepage&lt;/a&gt; community project also features a handy link to access Nash on your instances.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/500x373/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/6724.Nash.png" /&gt;&lt;/p&gt;
&lt;h3&gt;InnovatorAdmin&lt;/h3&gt;
&lt;p&gt;As an alternative to Nash, you can also check out &lt;a href="https://github.com/erdomke/InnovatorAdmin"&gt;InnovatorAdmin&lt;/a&gt;, an extremely useful tool&amp;nbsp;written by a member of the open Aras community. In addition to some other helpful features, InnovatorAdmin lets you run AML queries just like the built-in Nash application does. InnovatorAdmin also features IntelliSense to make writing your AML queries even easier.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/0x250/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-04/5165.AML-Studio.png" /&gt;&lt;/p&gt;
&lt;h2&gt;The AML Structure&lt;/h2&gt;
&lt;h3&gt;&amp;lt;AML&amp;gt;&lt;/h3&gt;
&lt;p&gt;If you are running your queries through Nash with the default settings, they should begin and end with this tag. You&amp;#39;ll notice all of the sample queries you will find in this blog post are wrapped in AML tags so you can easily copy and paste them directly into Nash for testing.&lt;/p&gt;
&lt;h3&gt;&amp;lt;Item&amp;gt;&lt;/h3&gt;
&lt;p&gt;The most used tag in AML. As most administrators of Aras Innovator know, everything in Innovator is an Item. Even ItemTypes themselves are stored in Innovator as Items. This tag lets you query for Items in the database by defining a few different attributes.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;id - The unique ID of the item in the database&lt;/li&gt;
&lt;li&gt;type - The name of the ItemType you want to query on&lt;/li&gt;
&lt;li&gt;action - The type of query you want to perform&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As a simple example, let&amp;#39;s try querying for the&amp;nbsp;&lt;strong&gt;Administrators&lt;/strong&gt; Identity by passing in the ID.&lt;/p&gt;
&lt;div&gt;
&lt;blockquote&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;Item&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;type&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;Identity&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;action&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;get&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;id&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;2618D6F5A90949BAA7E920D1B04C7EE1&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;/&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Note: If you&amp;#39;re testing this AML through Nash, you must wrap your entire query inside of an &amp;lt;AML/&amp;gt; tag like the example above.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;&amp;lt;property&amp;gt;&lt;/h3&gt;
&lt;p&gt;Property tags in AML exist as children to an &amp;lt;Item/&amp;gt; tag. The name of these tags correspond with the names of the ItemType&amp;#39;s properties. For example, we could rewrite the query above to search for the&amp;nbsp;&lt;strong&gt;name&lt;/strong&gt; of the Identity rather than searching directly on the ID.&lt;/p&gt;
&lt;blockquote&gt;
&lt;div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;Item&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;type&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;Identity&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;action&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;get&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;name&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;span&gt;Administrators&lt;/span&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;name&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span&gt;Item&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;p&gt;When using the&amp;nbsp;&lt;strong&gt;get&lt;/strong&gt; action, any property tags that you specify will be used as conditions to define which Items you want to get. However, when you use&amp;nbsp;&lt;strong&gt;&lt;/strong&gt;actions like&amp;nbsp;&lt;strong&gt;add&lt;/strong&gt;&lt;strong&gt;&lt;/strong&gt;,&amp;nbsp;&lt;strong&gt;edit&lt;/strong&gt;,&amp;nbsp;&lt;strong&gt;&lt;/strong&gt;or&amp;nbsp;&lt;strong&gt;update&lt;/strong&gt;, the property tags define what changes to the item you want to make. In the example below, we&amp;#39;ll add a new Identity with some property values.&lt;/p&gt;
&lt;div&gt;
&lt;blockquote&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;Item&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;type&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;Identity&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;action&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;add&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;name&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;span&gt;My Group Identity&lt;/span&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;name&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;is_alias&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;is_alias&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span&gt;description&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;span&gt;A group identity that we will add members to later&lt;/span&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;description&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span&gt;Item&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;div&gt;&lt;code&gt;&lt;span&gt;&amp;lt;/&lt;/span&gt;&lt;span&gt;AML&lt;/span&gt;&lt;span&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;p&gt;Note that these property tags use the&amp;nbsp;&lt;strong&gt;names&lt;/strong&gt; of the properties on the ItemType which may not match the&amp;nbsp;&lt;strong&gt;labels&lt;/strong&gt; that you see in the Client. All property names will be lowercase and any spaces are typically replaced with underscores.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Item properties are stored at a database level as an ID. We can query on an Item property by passing in this ID, or we can use an&amp;nbsp;&lt;strong&gt;&amp;lt;Item/&amp;gt;&lt;/strong&gt; tag to expand our AML query and pass in additional parameters. Below you&amp;#39;ll find a find a simple query to look up all&amp;nbsp;&lt;strong&gt;&lt;/strong&gt;Parts managed by&amp;nbsp;my Identity.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;AML&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;Item type=&amp;quot;Part&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;managed_by_id&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;Chris Gillis&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/managed_by_id&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;lt;/AML&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You can continue to nest &amp;lt;Item/&amp;gt; tags like this to easily build quite complex queries.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&amp;lt;Relationships&amp;gt;&lt;/h3&gt;
&lt;p&gt;We can use this tag to query on the relationships that exist between items in Aras Innovator. The Relationships tag is merely a container and will never have any attributes defined on it. You can see an example of how to use this tag below when we search for the Members of our Administrators Identity.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;AML&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;Administrators&amp;lt;/name&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Relationships&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Member&amp;quot; action=&amp;quot;get&amp;quot;/&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Relationships&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;lt;/AML&amp;gt;&lt;/code&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Just like with properties, we can also add or edit Relationships through this tag. Note that nested item properties can perform different actions than their parents like in the example below.&lt;/p&gt;
&lt;p&gt;Now that we&amp;#39;ve learned a few different core AML techniques, let&amp;#39;s combine them all together into one query. Let&amp;#39;s try to find all of the Group Identities in our system that a specific user is a member of.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span style="text-decoration:line-through;"&gt;&lt;/span&gt;&lt;code&gt;&amp;lt;AML&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;is_alias&amp;gt;0&amp;lt;/is_alias&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Relationships&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Member&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;related_id&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;Chris Gillis&amp;lt;/name&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/related_id&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Relationships&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/Item&amp;gt;&lt;br /&gt;&amp;lt;/AML&amp;gt;&lt;/code&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We can also use these same concepts to add or edit Relationships as well. Note that nested &amp;lt;Item/&amp;gt; tags can perform different actions than their parents. In the example below you can see how to add Members to the Group Identity we created earlier.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;AML&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;My Group Identity&amp;lt;/name&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Relationships&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Member&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;related_id&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;Chris Gillis&amp;lt;/name&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/related_id&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Member&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;related_id&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Item type=&amp;quot;Identity&amp;quot; action=&amp;quot;get&amp;quot;&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;Eli Donahue&amp;lt;/name&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/related_id&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/Relationships&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;lt;/Item&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;lt;/AML&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;With just a few key concepts under your belt, you&amp;#39;re already on your way to being an AML wizard.&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;I hope this brief introduction to AML has been helpful. In future blog posts, we&amp;#39;ll cover more advanced topics in AML like using different attributes to configure your query and using custom actions. If you have any questions about AML or suggestions for AML topics to cover in the future, please leave a comment!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Ask A Question I</title><link>https://www.aras.com/community/achievements/460ac7df-7ccc-4c42-a204-9e05eef3be09</link><pubDate>Wed, 12 Dec 2018 22:57:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0c7d3dba-f1a9-4c3f-a7b4-d65831c59dc9</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>Adding document with file error - AML Batch Loader</title><link>https://www.aras.com/community/f/development/3830/adding-document-with-file-error---aml-batch-loader</link><pubDate>Tue, 17 Jul 2018 10:08:57 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:de895756-0f85-468f-ae61-d3c8e7a3edcc</guid><dc:creator>Klaus Wroblewski</dc:creator><description>Hi,

I like to add new documents with attached files. Generally that works. But when a file does not exist I get the Error: File xy.dwg does not exist and the document will not be created.

Is there a possibility that the document will still be created without file?

&amp;nbsp;

I am using this AML template with Batch Loader

&amp;lt;Item type=&amp;quot;Document&amp;quot; where=&amp;quot;pbu_id=&amp;#39;@1&amp;#39;&amp;quot; action=&amp;quot;merge&amp;quot; version=&amp;quot;0&amp;quot;&amp;gt;
&amp;lt;pbu_id&amp;gt;@1&amp;lt;/pbu_id&amp;gt;
...
&amp;lt;viewable_file&amp;gt;
&amp;lt;Item type=&amp;quot;File&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;
&amp;lt;actual_filename&amp;gt;@7&amp;lt;/actual_filename&amp;gt;
&amp;lt;filename&amp;gt;@8&amp;lt;/filename&amp;gt;
&amp;lt;Relationships&amp;gt;
&amp;lt;Item type=&amp;quot;Located&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;
&amp;lt;related_id&amp;gt;xy&amp;lt;/related_id&amp;gt;
&amp;lt;/Item&amp;gt;
&amp;lt;/Relationships&amp;gt;
&amp;lt;/Item&amp;gt;
&amp;lt;/viewable_file&amp;gt;

&amp;lt;Relationships&amp;gt;
&amp;lt;Item type=&amp;quot;Document File&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;
&amp;lt;related_id&amp;gt;
&amp;lt;Item type=&amp;quot;File&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;
&amp;lt;actual_filename&amp;gt;@9&amp;lt;/actual_filename&amp;gt;
&amp;lt;filename&amp;gt;@10&amp;lt;/filename&amp;gt;
&amp;lt;Relationships&amp;gt;
&amp;lt;Item type=&amp;quot;Located&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;
&amp;lt;related_id&amp;gt;xy&amp;lt;/related_id&amp;gt;
&amp;lt;/Item&amp;gt;
&amp;lt;/Relationships&amp;gt;
&amp;lt;/Item&amp;gt;
&amp;lt;/related_id&amp;gt;
&amp;lt;/Item&amp;gt;
&amp;lt;/Relationships&amp;gt;
&amp;lt;/Item&amp;gt;

I appreciate your comments.
Regards Klaus&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>AML New User Password</title><link>https://www.aras.com/community/f/development/3660/aml-new-user-password</link><pubDate>Wed, 18 Apr 2018 08:11:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7d5d17b4-58ba-4b56-88e8-c3f2b20541f9</guid><dc:creator>Klaus Wroblewski</dc:creator><description>Hi,

I would like to create new users with &lt;strong&gt;user password&lt;/strong&gt; by AML in Batch Loader. I have done this but password in Innovator is not added/updated.

&amp;lt;Item type=&amp;quot;User&amp;quot; where=&amp;quot;login_name=&amp;#39;@1&amp;#39;&amp;quot; action=&amp;quot;merge&amp;quot;&amp;gt;

&amp;lt;login_name&amp;gt;@1&amp;lt;/login_name&amp;gt;

&amp;lt;password&amp;gt;@2&amp;lt;/password&amp;gt;

&amp;lt;logon_enabled&amp;gt;@3&amp;lt;/logon_enabled&amp;gt;

&amp;lt;first_name&amp;gt;@4&amp;lt;/first_name&amp;gt;

&amp;lt;last_name&amp;gt;@5&amp;lt;/last_name&amp;gt;

&amp;lt;email&amp;gt;@6&amp;lt;/email&amp;gt;

...

&amp;nbsp;

and

&amp;lt;Item type=&amp;quot;User&amp;quot; where=&amp;quot;login_name=&amp;#39;@1&amp;#39;&amp;quot; action=&amp;quot;add&amp;quot;&amp;gt;

&amp;lt;login_name&amp;gt;@1&amp;lt;/login_name&amp;gt;

&amp;lt;password&amp;gt;123&amp;lt;/password&amp;gt;

&amp;lt;logon_enabled&amp;gt;@2&amp;lt;/logon_enabled&amp;gt;

&amp;lt;first_name&amp;gt;@3&amp;lt;/first_name&amp;gt;

&amp;lt;last_name&amp;gt;@4&amp;lt;/last_name&amp;gt;

&amp;lt;email&amp;gt;@5&amp;lt;/email&amp;gt;

...

&amp;nbsp;

Best regards Klaus&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Innovator Admin - loading data from flat file</title><link>https://www.aras.com/community/f/applications/3538/innovator-admin---loading-data-from-flat-file</link><pubDate>Fri, 19 Jan 2018 05:15:40 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:03301a11-2bdf-49e2-94e8-63fe22e3169b</guid><dc:creator>Klaus Wroblewski</dc:creator><description>Hi,

Is there any possibility with Innovator Admin tool loading data from a flat file into Aras Innovator?
How do I reference to the data file?

I know this is possible with Batch Loader like this example
&amp;lt;Item type=&amp;quot;LT_OEM&amp;quot; where=&amp;quot;lt_oem_code=&amp;#39;@1&amp;#39;&amp;quot; action=&amp;quot;merge&amp;quot;&amp;gt;
&amp;lt;lt_oem_code&amp;gt;@1&amp;lt;/lt_oem_code&amp;gt;
&amp;lt;lt_oem_name&amp;gt;@2&amp;lt;/lt_oem_name&amp;gt;
&amp;lt;description&amp;gt;@3&amp;lt;/description&amp;gt;
&amp;lt;/Item&amp;gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Part Numbering System - Migration Environment</title><link>https://www.aras.com/community/f/integrations/3117/part-numbering-system---migration-environment</link><pubDate>Mon, 19 Dec 2016 02:56:58 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:38f6351d-258e-44bf-b7cd-b9e550769531</guid><dc:creator>Klaus Wroblewski</dc:creator><description>We are migrating from Enovia to Aras and most probably we will use a different part numbering system.

Currently the part numbers are also used in our CAD and ERP systems. There is no integration. We just &amp;quot;synchronize&amp;quot; manually.

&lt;strong&gt;Question:&lt;/strong&gt;
&lt;ol&gt;
 	&lt;li&gt;When we change to a new part numbering system, how do we manage this change in our CAD and ERP?&lt;/li&gt;
 	&lt;li&gt;How do we manage old and new part numbers to avoid any conflicts?&lt;/li&gt;
&lt;/ol&gt;
Any ideas are appreciated.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>