<?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>hkhan さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/hkhan</link><description>hkhan さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Selfservice report error</title><link>https://www.aras.com/community/f/development/37561/selfservice-report-error</link><pubDate>Fri, 19 Aug 2022 01:47:21 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3c45d25d-ed56-4f7f-8c3f-ccab13515820</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I am getting the following error on selfservice report any idea how i can resolve this?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1660873622240v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Conversation server time out</title><link>https://www.aras.com/community/f/development/38253/conversation-server-time-out</link><pubDate>Fri, 16 Feb 2024 18:23:18 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:d8761a5a-f5c5-4500-a79f-a4b4239cc2d7</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;When I run a method via conversation server, and I get the following error.&lt;/p&gt;
&lt;p&gt;I have conversation server running and if it time-out even if i have timeout set to 60 mins on conversation rule it times out in 40 second why is that?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Aras.ConversionFramework.Exceptions.ItemErrorException: System.Net.WebException: The operation has timed out.&lt;br /&gt; at Aras.ConversionFramework.Models.DAL.ItemContext.AssertItem(Item item) in C:\Builds\CI\36913\Innovator.git\CompilableCode\ConversionFramework\ConversionManager\Models\DAL\ItemContext.cs:line 92&lt;br /&gt; at Aras.ConversionFramework.Models.ConversionTaskEventHandler.Execute(ConversionTask task) in C:\Builds\CI\36913\Innovator.git\CompilableCode\ConversionFramework\ConversionManager\Models\ConversionTaskEventHandler.cs:line 245&lt;br /&gt; at Aras.ConversionFramework.Models.ConversionTask.ExecuteEventHandlers(ConversionTaskEventType eventType) in C:\Builds\CI\36913\Innovator.git\CompilableCode\ConversionFramework\ConversionManager\Models\ConversionTask.cs:line 321&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Toggle between permission</title><link>https://www.aras.com/community/f/development/37933/toggle-between-permission</link><pubDate>Wed, 05 Apr 2023 21:00:57 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:8e897057-6a26-42ad-88d3-ed75da8bae6f</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;How can i toggle between default permission and the other one which isnt default as can be seen below, how can i make this button unfrozen&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1680728442518v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to get itemtype name on CUI on click Method</title><link>https://www.aras.com/community/f/development/37778/how-to-get-itemtype-name-on-cui-on-click-method</link><pubDate>Wed, 11 Jan 2023 21:02:13 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:77c69fbc-4de5-4e15-bc3a-e7bef0ec51a1</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;How can i refer an Itemtype to it, like how can i put an if statement and get the itemtype name or ID on this. This runs on Click on searchview.commandbar&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="javascript"&gt;let queryDate;
const selectedItem = target.value;
const queryDateControl = control.data.get(&amp;#39;searchview.commandbar.default.querydate&amp;#39;);

if (selectedItem === &amp;#39;Released&amp;#39;) {
	queryDateControl.value = &amp;#39;&amp;#39;;
	queryDateControl.disabled = true;

	queryDate = aras.getVariable(varName_queryDate);
	if (queryDate &amp;amp;&amp;amp; queryDate !== Today) {
		aras.setVariable(varName_queryDate, queryDate);
	}

} else {
	const prevQueryType = aras.getPreferenceItemProperty(&amp;#39;Core_ItemGridLayout&amp;#39;, itemTypeID, &amp;#39;query_type&amp;#39;, null);
	const prevDatePattern = GetDatePattern(prevQueryType);

	if (!prevQueryType || prevQueryType === &amp;#39;Released&amp;#39;) {
		queryDate = aras.getVariable(varName_queryDate, queryDate) || Today;
	} else {
		queryDate = queryDateControl.value;

		if (queryDate !== Today) {
			queryDate = aras.convertToNeutral(queryDate, &amp;#39;date&amp;#39;, prevDatePattern);
		}
	}

	const localDate = aras.convertFromNeutral(queryDate, &amp;#39;date&amp;#39;, GetDatePattern(selectedItem));
	aras.setVariable(varName_queryDate, queryDate);

	queryDateControl.value = localDate;
	queryDateControl.disabled = false;
}

control.data.set(queryDateControl.id, Object.assign({}, queryDateControl));
control.render();&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>New version closes the item</title><link>https://www.aras.com/community/f/applications/37236/new-version-closes-the-item</link><pubDate>Fri, 18 Mar 2022 03:05:04 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e5bcafb5-75cc-48a9-95cd-01790256fe35</guid><dc:creator>haider</dc:creator><description>&lt;p&gt;So whenever I create a new version using a method, for some reason the form gets closed any idea why that happens?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Report Query XSLT</title><link>https://www.aras.com/community/f/development/37646/report-query-xslt</link><pubDate>Mon, 17 Oct 2022 23:13:27 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:2f7d73ae-367b-40ee-8941-a151c69a93a5</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Im Trying to do a whereuse on Doc V1 table to get data from a relationship called&amp;nbsp;Req V1 Doc v1 which is linked to another item called Req V1 and then Req V1 is linked to another item via relationship to&amp;nbsp;Verification Record is my script below looks good for report query?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="xml"&gt;&amp;lt;Item type=&amp;quot;Document V1&amp;quot; id=&amp;quot;{@id}&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;id&amp;quot;&amp;gt;
&amp;lt;Relationships&amp;gt;

&amp;lt;Item type=&amp;quot;Req V1 Doc v1&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;source_id&amp;quot;&amp;gt;
&amp;lt;source_id&amp;gt;
&amp;lt;Item type=&amp;quot;Req V1&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;state,id&amp;quot;&amp;gt;

&amp;lt;Relationships&amp;gt;

&amp;lt;Item type=&amp;quot;Req V1 Verification Record&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;related_id&amp;quot;&amp;gt;
&amp;lt;related_id&amp;gt;
&amp;lt;Item type=&amp;quot;Verification Record&amp;quot; action=&amp;quot;get&amp;quot; select=&amp;quot;id,state&amp;quot;&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;
&amp;lt;/source_id&amp;gt;
&amp;lt;/Item&amp;gt;



&amp;lt;/Relationships&amp;gt;
&amp;lt;/Item&amp;gt;
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>populate defaul property via javeascript</title><link>https://www.aras.com/community/f/development/37504/populate-defaul-property-via-javeascript</link><pubDate>Wed, 20 Jul 2022 23:28:46 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3a2da367-3332-4503-9afd-2bf3c53d271f</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;When i create a new item via a relationship called &lt;strong&gt;Subcontract&lt;/strong&gt;, there is a property called &lt;strong&gt;MASTER_DID &lt;/strong&gt;on &lt;strong&gt;subcontact&amp;nbsp;&lt;/strong&gt;which is&amp;nbsp;datatype&amp;nbsp;item as well, when the user selects a &lt;strong&gt;MASTER_DID&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;the owner&amp;nbsp;of &lt;strong&gt;MASTER_DID&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/strong&gt;should auto populate with the owner of &lt;strong&gt;Subcontract&lt;/strong&gt;. This needs to all happen on the grid. How can i achieve that via client event&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Javascript on grid</title><link>https://www.aras.com/community/f/development/37520/javascript-on-grid</link><pubDate>Wed, 27 Jul 2022 20:04:48 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:74e09b08-68f0-4b10-a615-7b1c653e9352</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1658952158505v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;How can i block/disable userstatus when VFI from a grid is either being created or edited and where should i run the method? by lock i mean&amp;nbsp;uneditable or the user should not be able to edit.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to update expire Aras certifies</title><link>https://www.aras.com/community/f/development/37411/how-to-update-expire-aras-certifies</link><pubDate>Fri, 10 Jun 2022 05:08:36 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6b7de048-68e0-4550-97af-50822a51ecd0</guid><dc:creator>haider</dc:creator><description>&lt;p&gt;How can I update expired Aras certificates&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>how can i disable File property on form</title><link>https://www.aras.com/community/f/development/37358/how-can-i-disable-file-property-on-form</link><pubDate>Wed, 18 May 2022 19:41:22 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:2418d348-f938-42e3-8ece-dfee87c3e034</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Hello,,&lt;/p&gt;
&lt;p&gt;How can i disable file property on the form using Javascript.onformpopulated&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1652902854210v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How can I update certificates</title><link>https://www.aras.com/community/f/development/37410/how-can-i-update-certificates</link><pubDate>Fri, 10 Jun 2022 05:07:38 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:9d9323e6-3446-4da4-be59-2164efcc0a43</guid><dc:creator>haider</dc:creator><description>&lt;p&gt;How can I update expired certificates&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Unique property on aras</title><link>https://www.aras.com/community/f/development/37359/unique-property-on-aras</link><pubDate>Wed, 18 May 2022 21:05:13 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:357af6aa-f9d7-47ae-86fd-93260923c901</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Im trying to create a new property on an Itemtype and when i make it unique it shows the following error any idea why?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1652907900991v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How can i create new permission and add that in</title><link>https://www.aras.com/community/f/development/37242/how-can-i-create-new-permission-and-add-that-in</link><pubDate>Mon, 21 Mar 2022 18:55:50 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:685563aa-591f-4edc-9ce7-492d061cc52f</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;How can i add new permission and add on add&lt;/p&gt;
&lt;p&gt;I am using the following mode, it is creating permission but not adding it&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Innovator inn = this.getInnovator();
string docid = this.getProperty(&amp;quot;id&amp;quot;,&amp;quot;&amp;quot;);
Item permissions = this.newItem(&amp;quot;Permission&amp;quot;, &amp;quot;add&amp;quot;);
permissions.setProperty(&amp;quot;name&amp;quot;, docid);
permissions = permissions.apply();
this.setProperty(&amp;quot;permission_id&amp;quot;, permissions.getID());   
	return this;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Get ID of item on the popup from a button on the form</title><link>https://www.aras.com/community/f/development/37098/get-id-of-item-on-the-popup-from-a-button-on-the-form</link><pubDate>Mon, 03 Jan 2022 20:39:46 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7cc38fc2-2224-4181-88ef-036e9ea35bac</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;I am building a popup for a button on the form, Can anyone tell me how can i get ID on the popup.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>how can i set default values on relationship using JS</title><link>https://www.aras.com/community/f/development/37099/how-can-i-set-default-values-on-relationship-using-js</link><pubDate>Mon, 03 Jan 2022 22:09:52 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b9636e11-475f-4302-bba9-988243796f7d</guid><dc:creator>hkhan</dc:creator><description>&lt;p&gt;Hello I want to set default values on relationship when creating an item from the relationship sing JS.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>