<?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>R さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/rrt</link><description>R さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Add xclassification with xproperty values to itemtype using method</title><link>https://www.aras.com/community/f/development/35351/add-xclassification-with-xproperty-values-to-itemtype-using-method</link><pubDate>Fri, 05 Jun 2020 11:22:34 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:33cf2cbd-5653-4c55-a9dd-10d7e37afcb4</guid><dc:creator>R</dc:creator><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;i want to add xclassification with xproperty to itemtype using c# method .&lt;/p&gt;
&lt;p&gt;i have xclass name and xproperty name which i have to add using method or i able to get xClass name and xProperty name dynamically from other itemtype&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>delete xclass available on part through code</title><link>https://www.aras.com/community/f/development/21806/delete-xclass-available-on-part-through-code</link><pubDate>Wed, 20 May 2020 08:00:56 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:8147df1e-d91f-46eb-bb3a-c903a263fc9c</guid><dc:creator>R</dc:creator><description>&lt;p&gt;Hi everyone,&lt;/p&gt;
&lt;p&gt;i want to delete xclass available on part through client side action on part itemtype.&lt;/p&gt;
&lt;p&gt;we can delete it through delete button available in xclass html on Part form, but i want to delete it through client side action on part.&lt;/p&gt;&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, 20 May 2020 08:00:56 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f2e27fd4-2efe-4298-a494-0173fa1f66ad</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</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:58 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5d0e52c9-74bc-48db-8e29-96051b0a9058</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>update item changes programatically  on itemtype save event</title><link>https://www.aras.com/community/f/development/3954/update-item-changes-programatically-on-itemtype-save-event</link><pubDate>Fri, 05 Oct 2018 06:31:09 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:3e1b1b72-f2c5-46c4-aa24-282044c08769</guid><dc:creator>R</dc:creator><description>hi all,

i set property of item programmatically using following code  (C# code)

Innovator inn=this.getInnovator();
string InvID = this.getProperty(&amp;quot;id&amp;quot;);

if(InvID !=&amp;quot;&amp;quot; &amp;amp;&amp;amp; InvID != null)
{
//get invoice item
Item Invitem=inn.newItem(&amp;quot;bal_invoice&amp;quot;,&amp;quot;get&amp;quot;);
Invitem.setProperty(&amp;quot;id&amp;quot;,InvID);
Item ResInv=Invitem.apply();
int InvCnt=ResInv.getItemCount();
if(InvCnt!=0)
{
//get inoive item property
decimal transportAmt=0;
decimal cessAmt=0;
string transport=ResInv.getProperty(&amp;quot;bal_transportation&amp;quot;);
if(transport!=null)
{
transportAmt=Convert.ToDecimal(transport);
}
string cess=ResInv.getProperty(&amp;quot;bal_cessamt&amp;quot;);
if(cess!=null)
{
cessAmt=Convert.ToDecimal(cess);
}

//get invoice relation item
Item relInv=inn.newItem(&amp;quot;Bal_Invoice2Parts&amp;quot;,&amp;quot;get&amp;quot;);
relInv.setProperty(&amp;quot;source_id&amp;quot;,ResInv.getID());
Item Resrelinv=relInv.apply();
int relinvCnt=Resrelinv.getItemCount();
// return inn.newError(relinvCnt.ToString());
decimal AmtTotal=0;
decimal IgstTotal=0;
decimal CgstTotal=0;
decimal SgstTotal=0;
decimal tTotal=0;

for(int i=0;i&amp;lt;relinvCnt;i++)
{
Item iInv=Resrelinv.getItemByIndex(i);
//get invoice relation property
string amount=iInv.getProperty(&amp;quot;bal_amount&amp;quot;);
string igstamount=iInv.getProperty(&amp;quot;bal_igstamt&amp;quot;);
string cgstamount=iInv.getProperty(&amp;quot;bal_cgstamt&amp;quot;);
string sgstamount=iInv.getProperty(&amp;quot;bal_sgstamt&amp;quot;);
string totalamount=iInv.getProperty(&amp;quot;bal_totalamt&amp;quot;);

//get total of all relation property
if(amount!=null)
{
AmtTotal=Convert.ToDecimal(AmtTotal)+Convert.ToDecimal(amount);
}
if(igstamount!=null)
{
IgstTotal=Convert.ToDecimal(IgstTotal)+Convert.ToDecimal(igstamount);
}
if(cgstamount!=null)
{
CgstTotal=Convert.ToDecimal(CgstTotal)+Convert.ToDecimal(cgstamount);
}
if(sgstamount!=null)
{
SgstTotal=Convert.ToDecimal(SgstTotal)+Convert.ToDecimal(sgstamount);
}
if(totalamount!=null)
{
tTotal=Convert.ToDecimal(tTotal)+Convert.ToDecimal(totalamount);
}
}
decimal gtotal=Convert.ToDecimal(tTotal)+Convert.ToDecimal(transportAmt)+Convert.ToDecimal(cessAmt);
// return inn.newError(AmtTotal.ToString());

//set calculated total to invoice
this.setProperty(&amp;quot;bal_taxablevalue&amp;quot;,AmtTotal.ToString());
this.setProperty(&amp;quot;bal_igstamount&amp;quot;,IgstTotal.ToString());
this.setProperty(&amp;quot;bal_cgstamount&amp;quot;,CgstTotal.ToString());
this.setProperty(&amp;quot;bal_sgstamount&amp;quot;,SgstTotal.ToString());
this.setProperty(&amp;quot;bal_totalamount&amp;quot;,tTotal.ToString());
this.setProperty(&amp;quot;bal_gross_total&amp;quot;,gtotal.ToString());

i added this code on itemtype onAfterAdd and onAfterUpdate

but i have to click on save button twice to update item form property

to avoid this i adde code-

if(this.getAction()!=&amp;quot;add&amp;quot;)
{
this.apply(&amp;quot;update&amp;quot;);
}

but i get an error - item with same key alreay added

please help me&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CMF (Content Modeling Framework) query</title><link>https://www.aras.com/community/f/applications/3600/cmf-content-modeling-framework-query</link><pubDate>Fri, 23 Feb 2018 03:24:09 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:47679587-feb9-46da-b26f-a6edbef4f206</guid><dc:creator>R</dc:creator><description>hi,

i want to create one tabular view of itemtype and its  relation , for that i use content modelling

i create element type , property type and element binding in content type

but i not able to get data in editor tabular view, is any method required to show data of itemtype and relation in editor&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Itemtype Data Problem</title><link>https://www.aras.com/community/f/applications/3688/itemtype-data-problem</link><pubDate>Mon, 14 May 2018 04:40:49 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:9c6f1bf4-037f-4666-946a-6ab49cd2de07</guid><dc:creator>R</dc:creator><description>hi,

i not able to seen any data for particular itemtype in Main Grid

but it is available in sql database

&amp;nbsp;

&amp;nbsp;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Change Form Value By Relationship</title><link>https://www.aras.com/community/f/development/3675/change-form-value-by-relationship</link><pubDate>Fri, 04 May 2018 05:46:17 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6144a85f-1cdf-40f4-8f35-9c7c44758628</guid><dc:creator>Michelle</dc:creator><description>Hi

How to change form value when I add RelationShip.  I need add Relationship to trigger change form value.

Code:   handleItemChange(&amp;quot;_qai_model&amp;quot;, &amp;quot;CV1000&amp;quot;);

I setting this method in RelationshipType Grid Events &amp;quot;OnInsertRow&amp;quot;. But  when I insert relationship row  system show error message.

Error Message:

message:&amp;quot;handleItemChange is not defined&amp;quot;
stack:&amp;quot;ReferenceError: handleItemChange is not defined&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>CMF method query</title><link>https://www.aras.com/community/f/applications/3655/cmf-method-query</link><pubDate>Wed, 11 Apr 2018 03:38:12 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5a2a29f3-9d6e-4b5a-ba30-029ffee10b97</guid><dc:creator>R</dc:creator><description>hi ,

i want to use content modelling framework , so i use demo video of cmf but i not understood any method is required for generation tree label ?

another question - is there any sample database for download having data for cmf&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Checkdout_path of file uploaded on itemtype form not saved</title><link>https://www.aras.com/community/f/applications/3626/checkdout_path-of-file-uploaded-on-itemtype-form-not-saved</link><pubDate>Wed, 14 Mar 2018 03:01:19 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:9194713f-90ef-47ff-ada2-5c84f730401a</guid><dc:creator>R</dc:creator><description>hi,

i want to get checdout_path of file uploaded on itemtype form , i check it in database it seen blank in sp9 version of aras

in old version of aras 11.0 , i get this checkedout_path of uploaded file

is this problem with sp 9 version or problem of any setting required in aras?&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>Data Import Problem in 11.0 SP9</title><link>https://www.aras.com/community/f/applications/3573/data-import-problem-in-11-0-sp9</link><pubDate>Sat, 10 Feb 2018 07:16:08 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:85425dd2-ccbc-4188-9b47-ad8bb26ff1c5</guid><dc:creator>R</dc:creator><description>hi ,

i importing data from aras 11.0 to 11.0 sp9 using package ImportExport, data imported succesfully

but it not shown in main grid of any itemtype of aras window, even if it is present in sql server database&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>my InBasket Activity query</title><link>https://www.aras.com/community/f/applications/3534/my-inbasket-activity-query</link><pubDate>Tue, 16 Jan 2018 08:54:24 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:067ef5ce-e4c1-406d-abe1-63edc3e89dd7</guid><dc:creator>R</dc:creator><description>Hi,
&amp;lt;p style=&amp;quot;text-align: left;&amp;quot;&amp;gt;On which date of Activity ( Project Activity ) it appear in MyInBasket when logged in as assigned user&amp;lt;/p&amp;gt;
&amp;lt;p style=&amp;quot;text-align: left;&amp;quot;&amp;gt;&lt;span&gt;Suppose today&amp;#39;s date is 16-01-2018&lt;/span&gt;&amp;lt;/p&amp;gt;
&amp;lt;p style=&amp;quot;text-align: left;&amp;quot;&amp;gt;&lt;span&gt;Then to apper activity in MyInBasket which date of Activity is compare to today&amp;#39;s date &lt;/span&gt;&amp;lt;/p&amp;gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Project plan tree grid Customisation</title><link>https://www.aras.com/community/f/applications/3525/project-plan-tree-grid-customisation</link><pubDate>Mon, 08 Jan 2018 03:01:47 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:6031fbe8-f066-4e49-b772-8c9ce6d11e6d</guid><dc:creator>R</dc:creator><description>hi,

i want to add new column to project plan tree , how to do it?

i get html file that showing project tree (projectPlanView.html)

but i not get how add column to it&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Project Plan updation Query</title><link>https://www.aras.com/community/f/applications/3519/project-plan-updation-query</link><pubDate>Thu, 04 Jan 2018 01:27:23 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:beafd1b8-b0e5-4364-af96-1f6dd22f397c</guid><dc:creator>R</dc:creator><description>hi,

i created one project plan having two activity A and B, In which Activity A is Predecessor of Activity B

activity      predecessor       plan start             plan finish       duration

A                                      12/28/2017          12/28/2017            1

B                   A                 12/29/2017          12/29/2017            1

if i complete Activity A two days after plan start date of A (on 12/30/2017)

then as Activity B is successor of A , how to update plan start of Activity B automatically to next day of Activity A completion Date? ( 12/31/2017)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>