<?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>kentonvk さんのアクティビティ</title><link>https://www.aras.com/community/members/kentonvk</link><description>kentonvk さんの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>New community edition (Release 2024)</title><link>https://www.aras.com/community/f/development/55249/new-community-edition-release-2024</link><pubDate>Wed, 05 Jun 2024 09:27:49 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:0dbbf9a3-42e4-443f-a9ba-9bb80eadfafc</guid><dc:creator>AngelaIp</dc:creator><description>&lt;p&gt;Hi community,&lt;/p&gt;
&lt;p&gt;what are your thoughts regarding the new open release?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Angela&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Override IType Property auto-label</title><link>https://www.aras.com/community/f/development/35755/override-itype-property-auto-label</link><pubDate>Tue, 07 Jul 2020 19:02:13 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:29f4ef53-5282-40ef-802a-185c2010d95d</guid><dc:creator>neil.lindberg</dc:creator><description>&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1594147778340v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;After adding a property to an ItemType and tabbing from the property Name to the property Label there is the annoying behaviour I would like very much to override. I&amp;#39;d rather it stay blank than constantly needing to: Select all, delete, and finally enter a sensible label. I&amp;#39;m only critical of this annoyance because all the default labels are sensible, but whoever put together this auto-label didn&amp;#39;t seem to take that into account.&lt;/p&gt;
&lt;p&gt;For instance, the default label for &amp;quot;team_id&amp;quot; is simply &amp;quot;Team&amp;quot;, and the default label for &amp;quot;release_date&amp;quot; is &amp;quot;Release Date&amp;quot;. So, why would tab-to automatically copy the property name?&lt;/p&gt;
&lt;p&gt;I&amp;#39;d like if tab to split on underscore and did a caps op on every word. Then, rather than constantly needing to delete the auto-label to enter one that conforms to the default look of out-the-box Innovator IType labels, it would actually be helpful!&lt;/p&gt;
&lt;p&gt;This is a quick JS example, and I think if ANY auto-label this should be it:&lt;/p&gt;
&lt;p&gt;```&lt;/p&gt;
&lt;p&gt;// Change &amp;quot;release_date&amp;quot; property name to desired default-looking, &amp;quot;Release Date&amp;quot;:&lt;/p&gt;
&lt;p&gt;&amp;quot;release_date&amp;quot;.split(&amp;quot;_&amp;quot;).map(x =&amp;gt; x.charAt(0).toUpperCase() + x.substr(1,)).join(&amp;#39; &amp;#39;)&lt;/p&gt;
&lt;p&gt;````&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Need server method to hide property of an Item for specific identity</title><link>https://www.aras.com/community/f/development/55336/need-server-method-to-hide-property-of-an-item-for-specific-identity</link><pubDate>Tue, 08 Oct 2024 00:26:09 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:18fe0f63-9596-4461-9207-aefca46f62c9</guid><dc:creator>Hargul Sidhu</dc:creator><description>&lt;p&gt;As the tilte says. We want the &amp;quot;Classification&amp;quot; property of ItemType &amp;quot;Document&amp;quot; to be hidden for a user if they are part of a specific identity.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also want the value of &amp;quot;Classification&amp;quot; to set as &amp;quot;General&amp;quot; for these users when they search of Documents. I have achieved this. However, now we do not want the users of this identity to be able to see the &amp;quot;Classification&amp;quot; column in the search grid. How do I accomplish this.&amp;nbsp;&lt;br /&gt;I apply the code below to &amp;quot;onBeforeGet&amp;quot;.&lt;br /&gt;&lt;br /&gt;Mentioned below is my method:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Innovator inn = this.getInnovator();&lt;/p&gt;
&lt;p&gt;//Get ID of the logged in user&lt;br /&gt;Item alias = inn.newItem(&amp;quot;Alias&amp;quot;,&amp;quot;get&amp;quot;);&lt;br /&gt;alias.setProperty(&amp;quot;source_id&amp;quot;,inn.getUserID());&lt;br /&gt;alias.setAttribute(&amp;quot;select&amp;quot;,&amp;quot;related_id&amp;quot;);&lt;br /&gt;alias = alias.apply();&lt;br /&gt;string relatedId = alias.getProperty(&amp;quot;related_id&amp;quot;);&lt;br /&gt;int count = alias.getItemCount();&lt;br /&gt;string target = &amp;quot;DBA5D86402BF43D5976854B8B48FCDD1&amp;quot;;&lt;br /&gt;if(relatedId == target){&lt;br /&gt; this.setProperty(&amp;quot;classification&amp;quot;, &amp;quot;General&amp;quot;);&lt;br /&gt; this.createRelationship(&amp;quot;Property&amp;quot;, &amp;quot;edit&amp;quot;);&lt;br /&gt; this.setProperty(&amp;quot;id&amp;quot;, &amp;quot;DE3C90BC7B434151A6F3C9D97A5B2B69&amp;quot;); // Property ID&lt;br /&gt; this.setProperty(&amp;quot;is_hidden&amp;quot;, &amp;quot;1&amp;quot;); // Hide the property&lt;br /&gt; this.setProperty(&amp;quot;is_hidden2&amp;quot;, &amp;quot;1&amp;quot;); // Hide the secondary property&lt;br /&gt;}&lt;br /&gt;return this;&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/community/resized-image/__size/640x480/__key/communityserver-discussions-components-files/3/pastedimage1728347050758v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Updating an Existing Property on Workflow vote</title><link>https://www.aras.com/community/f/development/38225/updating-an-existing-property-on-workflow-vote</link><pubDate>Tue, 23 Jan 2024 20:40:24 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:61ede212-8a78-48a4-9fe9-5ca6e8048792</guid><dc:creator>conner davis</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;After a user votes on a workflow, I want to update an existing property (&lt;span&gt;_conversation_history)&lt;/span&gt;. The code below is what I am using.&lt;/p&gt;
&lt;p&gt;It appears that the code is generating the correct string in the variable (&lt;span&gt;newconvo)&lt;/span&gt;), but it is not updating the property on the item?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Innovator inn = this.getInnovator();&lt;br /&gt;Item controlledItem = this.apply(&amp;quot;GetControlledItem&amp;quot;);&lt;br /&gt;if (controlledItem.isError()) {&lt;br /&gt; return inn.newError(&amp;quot;smc_TechInquiry_Notifications: Retrive Workflow: Unexpected error: &amp;quot; + controlledItem.getErrorString());&lt;br /&gt; }&lt;br /&gt;// get the message from requestor and reply to requestor&lt;/p&gt;
&lt;p&gt;string messagefrom = controlledItem.getProperty(&amp;quot;_message_from_requestor&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;string replyTo = controlledItem.getProperty(&amp;quot;_reply_to_requestor&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;string history = controlledItem.getProperty(&amp;quot;_conversation_history&amp;quot;,&amp;quot;&amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;string newconvo = history + &amp;quot; &amp;quot; + messagefrom + &amp;quot; &amp;quot; + replyTo;&lt;br /&gt;&lt;br /&gt;string message = controlledItem.getPropertyCondition(&amp;quot;_conversation_history&amp;quot;);&lt;br /&gt;this.setProperty(&amp;quot;_conversation_history&amp;quot;,newconvo);&lt;br /&gt;&lt;br /&gt;return this;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for your help!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>promote() method</title><link>https://www.aras.com/community/f/development/3919/promote-method</link><pubDate>Fri, 07 Sep 2018 13:59:32 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:52c75575-3102-488f-856e-eb059421a75b</guid><dc:creator>Former Member</dc:creator><description>Within a VB method being called on BeforeAdd for an Item, what is the proper syntax to promote new items to a specific Lifecycle state initially?

Me.setAction(&amp;quot;promoteItem&amp;quot;)
Me.setProperty(&amp;quot;state&amp;quot;,stateX)

or

Me.promote(???,StateX)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to extract workflow &amp;amp; activity master info from database?</title><link>https://www.aras.com/community/f/development/3907/how-to-extract-workflow-activity-master-info-from-database</link><pubDate>Fri, 31 Aug 2018 01:01:28 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:19a6b40a-4f6b-46b2-8196-9fe4c6b183d2</guid><dc:creator>Joseph An</dc:creator><description>Hi expert,
I try to extract workflow information using query.
But, I&amp;#39;d like to extract only workflow information purely.

For example, I create &amp;#39;Express ECO&amp;#39; workflow and set activities as below:
Workflow name activity         activity            activity                   activity                   activity             activity    activity
&amp;#39;Express ECO&amp;#39;       &amp;#39;Start&amp;#39;    &amp;#39;Submit ECO&amp;#39;    &amp;#39;Planning&amp;#39;     &amp;#39;Change Approval&amp;#39;    &amp;#39;Make Changes&amp;#39;    &amp;#39;Review&amp;#39;    &amp;#39;Close&amp;#39;

I need to extract the workflow master info above.
Would you help me know how to get workflow master and activities set on that workflow master?

Using the query below, I can extract actual data but not master or template info.
SELECT *
FROM [innovator].[EXPRESS_ECO] A,
[innovator].[WORKFLOW] B,
[innovator].[WORKFLOW_MAP] D,
[innovator].[WORKFLOW_PROCESS] C,
[innovator].[WORKFLOW_PROCESS_ACTIVITY] E,
[innovator].[ACTIVITY] F,
[innovator].[ACTIVITY_ASSIGNMENT] G
WHERE A.ID = B.SOURCE_ID
AND B.RELATED_ID = C.ID
AND C.COPIED_FROM_STRING = D.ID
AND C.ID = E.SOURCE_ID
AND E.RELATED_ID = F.ID
AND F.ID = G.SOURCE_ID .

Thank you.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Workflow Activity Completion</title><link>https://www.aras.com/community/f/development/3615/workflow-activity-completion</link><pubDate>Wed, 07 Mar 2018 13:58:38 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:15a05098-fed8-4413-b189-30bef0b759f0</guid><dc:creator>Former Member</dc:creator><description>I am trying to complete workflow assignment with AML but it is acing weird.

&amp;nbsp;

My request xml looks like given below:

&amp;lt;Item action=&amp;quot;EvaluateActivity&amp;quot; type=&amp;quot;Activity&amp;quot;&amp;gt;
&amp;lt;Activity&amp;gt;DE33049EBA694267A44CA41A002E7C51&amp;lt;/Activity&amp;gt;
&amp;lt;ActivityAssignment&amp;gt;99E2CFE208154E4FBD70E75DE6AB4B74&amp;lt;/ActivityAssignment&amp;gt;
&amp;lt;Paths&amp;gt;&amp;lt;Path&amp;gt;2312B2C556DC4C028F740433E629C934&amp;lt;/Path&amp;gt;Submit&amp;lt;/Paths&amp;gt;
&amp;lt;DelegateTo&amp;gt;0&amp;lt;/DelegateTo&amp;gt;
&amp;lt;Tasks&amp;gt;&amp;lt;Task Completed=&amp;quot;1&amp;quot;&amp;gt;03D548CE54834C27BDB7974175C8A43F&amp;lt;/Task&amp;gt;
&amp;lt;Task Completed=&amp;quot;1&amp;quot;&amp;gt;DEB21FCD697942DC91DFCBECB21747A4&amp;lt;/Task&amp;gt;&amp;lt;/Tasks&amp;gt;
&amp;lt;Variables&amp;gt;&amp;lt;Variable id=&amp;quot;451171CA8A144AD8B87E065216208B02&amp;quot;&amp;gt;vb cvbnvxn&amp;lt;/Variable&amp;gt;
&amp;lt;/Variables&amp;gt;
&amp;lt;Authentication mode=&amp;quot;&amp;quot;/&amp;gt;
&amp;lt;Comments&amp;gt;xcbxcvb xcxcbx&amp;lt;/Comments&amp;gt;
&amp;lt;Complete&amp;gt;0&amp;lt;/Complete&amp;gt;
&amp;lt;/Item&amp;gt;

My response reads like the following:

&amp;lt;SOAP-ENV:Envelope&amp;gt;&amp;lt;SOAP-ENV:Body&amp;gt;&amp;lt;SOAP-ENV:Fault&amp;gt;&amp;lt;faultcode&amp;gt;SOAP-ENV:Server&amp;lt;/faultcode&amp;gt;&amp;lt;faultstring&amp;gt;The action &amp;quot;&amp;quot;,EvaluateActivity is not supported.&amp;lt;/faultstring&amp;gt;&amp;lt;detail&amp;gt;&amp;lt;af:legacy_detail&amp;gt;The action &amp;quot;&amp;quot;,EvaluateActivity is not supported.&amp;lt;/af:legacy_detail&amp;gt;&amp;lt;/detail&amp;gt;&amp;lt;/SOAP-ENV:Fault&amp;gt;&amp;lt;/SOAP-ENV:Body&amp;gt;&amp;lt;/SOAP-ENV:Envelope&amp;gt;

&amp;nbsp;

Further more response in nash with the same request is following:

&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&amp;quot;&lt;a href="http://schemas.xmlsoap.org/soap/envelope/"&gt;&amp;quot;&amp;gt;schemas.xmlsoap.org/.../&amp;quot;&amp;gt;&amp;lt;SOAP-ENV:Body&amp;gt;&amp;lt;SOAP-ENV:Fault&lt;/a&gt; xmlns:af=&amp;quot;&lt;a href="http://www.aras.com/InnovatorFault"&gt;&amp;quot;&amp;gt;www.aras.com/.../faultcode&amp;gt;&amp;lt;faultstring&amp;gt;&amp;lt;![CDATA[Failed&lt;/a&gt; to get the Activity Tasks.]]&amp;gt;&amp;lt;/faultstring&amp;gt;&amp;lt;detail&amp;gt;&amp;lt;af:legacy_detail&amp;gt;&amp;lt;![CDATA[Failed to get the Activity Tasks.]]&amp;gt;&amp;lt;/af:legacy_detail&amp;gt;&amp;lt;af:legacy_faultstring&amp;gt;&amp;lt;![CDATA[Workflow: EvaluateActivity: Specified Tasks are not found for Activity]]&amp;gt;&amp;lt;/af:legacy_faultstring&amp;gt;&amp;lt;/detail&amp;gt;&amp;lt;/SOAP-ENV:Fault&amp;gt;&amp;lt;/SOAP-ENV:Body&amp;gt;&amp;lt;/SOAP-ENV:Envelope&amp;gt;

&amp;nbsp;

I looked at the request xml using Admin-&amp;gt;saveRequest setting and my xml matches with what is sent by the official client. What am I missing?

&amp;nbsp;

&amp;nbsp;

&amp;nbsp;

&amp;nbsp;

&amp;nbsp;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Method to convert</title><link>https://www.aras.com/community/f/development/3614/method-to-convert</link><pubDate>Wed, 07 Mar 2018 08:24:31 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b41967a0-caa5-45f3-97f0-79189d2eea8b</guid><dc:creator>Tejaswini</dc:creator><description>Hello

I have client side method i want to change that client side method to server side method.how can I do that?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Private Permission of Itemtype depend on classification of ItemType</title><link>https://www.aras.com/community/f/development/3611/private-permission-of-itemtype-depend-on-classification-of-itemtype</link><pubDate>Tue, 06 Mar 2018 01:22:02 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:663ff3b4-f40d-4421-a4cd-ebcd4934f6f9</guid><dc:creator>R</dc:creator><description>hi,

i want to give private permission to itemtype depend on classification of itemtype

i have one user qadmin , i want to give permission to one itemtype such that if classification of that itemtype is Editor then only qadmin can see it .&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Get state update another property</title><link>https://www.aras.com/community/f/development/3608/get-state-update-another-property</link><pubDate>Fri, 02 Mar 2018 01:57:34 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:28b171c5-743a-4ab4-881e-1d2a9270d0cb</guid><dc:creator>Michelle</dc:creator><description>Hi

How can I update property (myColumn) when  property (state) change.  I  setting method in Server Event add and update but property (state) update by system  wouldn&amp;#39;t trigger Server Event .&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>