<?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>Jenli さんの グループ アクティビティ</title><link>https://www.aras.com/community/members/jenli</link><description>Jenli さんの グループ ユーザーの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Adding a new column in Collab-folders issue</title><link>https://www.aras.com/community/f/development/36748/adding-a-new-column-in-collab-folders-issue</link><pubDate>Wed, 28 Jul 2021 08:00:25 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:cfeb6ae4-f6d6-495a-b911-d4ee9f38b2a1</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;I am trying to add a &amp;quot; locked_by id &amp;quot;column (who locked the folder) on the collab-folder page, what i did is coping a piece of code of other columns in cFolderStructureConfig.xml, however not sure what these &amp;quot;id&amp;quot; values should be set here and how to get those &amp;quot;id&amp;quot; values&lt;br /&gt;I maked on the screenshout below. Thank you for your help. -jen&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/127.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Problem about checking a file into CAD native file. thanks</title><link>https://www.aras.com/community/f/development/36343/problem-about-checking-a-file-into-cad-native-file-thanks</link><pubDate>Thu, 18 Mar 2021 13:36:28 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:7894b4e0-9e3b-499b-85d0-fa5fb04df1a3</guid><dc:creator>Jenli</dc:creator><description>&lt;div&gt;Hi Aras Team,&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;I am trying to send an local file(CheckInFile) into CAD Native file, however it looks every line in the following code works fine, but the &amp;quot;fileId&amp;quot;&amp;nbsp; value is not able to set into the CAD native_file property in the vault table in the end. Any ideas? Thanks vey much.&lt;/div&gt;
&lt;div&gt;&lt;span style="background-color:#ffffff;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="background-color:#ffffff;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:courier new,courier;font-size:inherit;"&gt;Dim MyDocItem As Aras.IOM.Item = MyInnovator.getItemByKeyedName(&amp;quot;CAD&amp;quot;, txtDocNumber.Text)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim I As Integer = 1&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For I = 1 To CheckInFile.Length - 1&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim MyFileItem As Aras.IOM.Item = MyInnovator.newItem(&amp;quot;File&amp;quot;, &amp;quot;add&amp;quot;)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:courier new,courier;font-size:inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyFileItem.setFileName(CheckInFile(I))&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyFileItem = MyFileItem.apply()&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:courier new,courier;font-size:inherit;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim fileId As String = MyFileItem.getProperty(&amp;quot;id&amp;quot;)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyDocItem.setProperty(&amp;quot;viewable_file&amp;quot;, fileId)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Next&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:courier new,courier;font-size:inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39; execute &amp;quot;add&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim MyResult As Aras.IOM.Item&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyResult = MyDocItem.apply()&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="font-family:courier new,courier;font-size:inherit;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;Best regards,&lt;/div&gt;
&lt;div&gt;Jen Li&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Chekout File for different file types</title><link>https://www.aras.com/community/f/development/36654/chekout-file-for-different-file-types</link><pubDate>Tue, 06 Jul 2021 08:39:42 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:c6732182-7935-47ac-bfe2-3d217a5615df</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I use checkout function for&amp;nbsp;File checkout, and it works for mostly FILE type, such as .txt .doc. pdf,&amp;nbsp; however which is exclusion of .dwg file type.&lt;/p&gt;
&lt;p&gt;Since the .dwg&amp;nbsp;file has been download as &amp;quot;vaultserver.aspx&amp;quot; on my side, any solutions that how to make the checkout() compatible with dwg file.&amp;nbsp; BTW, my innovator is Version 11.&lt;/p&gt;
&lt;p&gt;Thanks. Jen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>File Checkout function unusual</title><link>https://www.aras.com/community/f/development/36630/file-checkout-function-unusual</link><pubDate>Mon, 28 Jun 2021 08:25:55 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:61053b0c-9a5c-4418-b57c-4df011182ee9</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;Hi Team，&lt;/p&gt;
&lt;p&gt;I am trying to Checkout/Download the File from CAD operation, here is my code, it seems working fine till line 11, but it finally checkout the file as &amp;quot;vaultserver.aspx&amp;quot;?? Any ideas? Thank you!&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/1411._5563B783_.PNG" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>&amp;quot;client_ZipSelectedRelatedFiles&amp;quot; method Error.</title><link>https://www.aras.com/community/f/development/36439/client_zipselectedrelatedfiles-method-error</link><pubDate>Thu, 29 Apr 2021 08:28:52 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:a14f7170-c0fe-4e92-ad31-5cd071146dbc</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I have an issue about&amp;nbsp;&lt;em&gt;client_ZipSelectedRelatedFiles&lt;/em&gt; method that I got from Aras&amp;nbsp;GitHub lab&amp;nbsp;which is useful for mutiple download functionality，once&amp;nbsp; I&amp;nbsp;added a line &lt;em&gt;&amp;quot; fileItem.setProperty(&amp;quot;locked_by_id&amp;quot;, &amp;quot;30B991F927274FA3829655F50C99472E&amp;quot;);&amp;quot; &lt;/em&gt;then&amp;nbsp;It pops up error that said ARAS object:&amp;quot;undefined&amp;quot; which confused me, any ideas? Thanks！&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/pastedimage1619684783191v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/_5563B783_.PNG" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to update file attached to Document without remove old file and re-add ?</title><link>https://www.aras.com/community/f/development/9068/how-to-update-file-attached-to-document-without-remove-old-file-and-re-add</link><pubDate>Mon, 10 Feb 2020 03:23:53 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:b064d137-348e-4d84-a4b1-8fdc4fea5fa1</guid><dc:creator>anhht-hue</dc:creator><description>&lt;p&gt;Hi everybody, please support me for this situation,&lt;/p&gt;
&lt;p&gt;In my case,&lt;/p&gt;
&lt;p&gt;1. I created new Document and attached a text file (Document generation = 1)&lt;/p&gt;
&lt;p&gt;2. When I update Document, If file is attached have file name is same with old file in Aras server -&amp;gt; My code will remove old file with &amp;quot;delete&amp;quot; action (Document&amp;nbsp;&lt;span&gt;generation&amp;nbsp; = 2)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;3. After that it will re-add new file with &amp;quot;add&amp;quot; action (Document generation&amp;nbsp;&amp;nbsp;= 3)&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Requirement: After Update document -&amp;gt; Document&amp;nbsp;generation&amp;nbsp;must be 2. And file attached in tag document is only &amp;quot;new file&amp;quot; (If not delete old file and re-add, Aras will be create 2 files with same name but different content)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks so much.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Operations does not show up in  the MPP ProcessPlan page. Thanks!</title><link>https://www.aras.com/community/f/development/36120/operations-does-not-show-up-in-the-mpp-processplan-page-thanks</link><pubDate>Fri, 13 Nov 2020 02:08:45 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:afe800dd-acaa-48b7-b159-50b09bfb5242</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;&lt;span style="background-color:#ffffff;color:#11171a;float:none;font-family:arial,helvetica,sans-serif;font-size:inherit;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5em;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;Hi All,&lt;/span&gt;&lt;span style="background-color:#ffffff;color:#11171a;float:none;font-family:arial,helvetica,sans-serif;font-size:inherit;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5em;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="background-color:#ffffff;color:#11171a;float:none;font-family:arial,helvetica,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1.5em;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;In&amp;nbsp; MPP (Process Plan) module, we did change to select an existing operation instead of&amp;nbsp; inserting an operation&amp;nbsp;&lt;/span&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;manually in MPP.&amp;nbsp; The operation I selected has been saved into relationship Itemtype MPP_ProcessPlanOperation which I created, but the operation does not show up in the MPP process plan page. Any ideas? Thanks a lot.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;I am looking forward to hearing from you. Thanks.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/3/1513.pastedimage1591866163461v1.png" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:inherit;"&gt;&lt;span style="color:#11171a;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;&lt;span style="font-family:arial,helvetica,sans-serif;"&gt;Best,Jen&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Work Item Showing Restricted on Revision B in My Inbasket</title><link>https://www.aras.com/community/f/getting-started/3752/work-item-showing-restricted-on-revision-b-in-my-inbasket</link><pubDate>Thu, 21 Jun 2018 07:49:20 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:72704031-4210-4bbb-b750-2decac644c34</guid><dc:creator>Maddy</dc:creator><description>Hi Experts,

My Document is in revision &amp;quot;B&amp;quot;, but the &amp;quot;&lt;strong&gt;Work Item&lt;/strong&gt;&amp;quot; in &amp;quot;&lt;strong&gt;In MyBasket&lt;/strong&gt;&amp;quot; showing as &amp;quot;&lt;strong&gt;Restricted&amp;quot;&lt;/strong&gt;

what is missing?

&amp;nbsp;

Regards,

Maddy.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>MPP Operations does not saved when I changed to select an existing operation. Thanks.</title><link>https://www.aras.com/community/f/development/35641/mpp-operations-does-not-saved-when-i-changed-to-select-an-existing-operation-thanks</link><pubDate>Thu, 11 Jun 2020 09:11:22 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:394e7887-6786-4d68-92a1-878cb2d545f8</guid><dc:creator>Jenli</dc:creator><description>&lt;div&gt;Hi&amp;nbsp; all,&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Hope you are doing well during the quarantine!&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Here is an urgent issue that need your help. In&amp;nbsp; MPP (Process Plan) module, we are trying to change to select an existing operation instead of&amp;nbsp; inserting an operation&amp;nbsp;&lt;span&gt;manually in MPP.&amp;nbsp; Since I updated the code as Screenshot below, the operation dialog works as I expected, but the Operations we selected does not save into database, of course it does not show in the mpp panel as well. please see the screenshots below.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Thanks very much.&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Jen Li&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-discussions-components-files/3/pastedimage1591866163461v1.png" /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-discussions-components-files/3/pastedimage1591866163469v2.png" /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Vault server URL error while uploading a file using my code. Thanks.</title><link>https://www.aras.com/community/f/applications/6553/vault-server-url-error-while-uploading-a-file-using-my-code-thanks</link><pubDate>Mon, 11 Nov 2019 09:19:51 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:1de72862-7b04-4373-b7c4-f23018f4c890</guid><dc:creator>Jenli</dc:creator><description>&lt;p&gt;Hi Guys,&lt;/p&gt;
&lt;div&gt;
&lt;div class="x_"&gt;&lt;span&gt;I use my code to upload a file into system by using &amp;quot;item1.attachPhysicalFile(filePath)&amp;quot;, however I got the error as the screenshoot below, then it also said :&lt;/span&gt;&lt;/div&gt;
&lt;div class="x_"&gt;&lt;i&gt;&lt;span&gt;&amp;nbsp;Side Error&amp;quot; 2nd: &amp;quot;Failed to upload the files. Is the specified Vault Server URL: &amp;quot;&lt;/span&gt;&lt;/i&gt;&lt;a href="https://www.mydomain.com/InnovatorServer/vault/vaultserver.aspx" rel="noopener noreferrer" target="_blank"&gt;&lt;i&gt;&lt;span&gt;&amp;quot;http://192.168.6.60/InnovatorServer/vault/vaultserver.aspx&amp;quot;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;/i&gt;&lt;/a&gt;&lt;i&gt;&lt;span&gt;&amp;nbsp;correct ?&amp;quot;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="x_"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class="x_"&gt;&lt;span&gt;&amp;nbsp;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/8/_0B4E7D8F_.png" /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="x_"&gt;&lt;span&gt;It seems I did not make any changes of Vault settings. However, thanks in advance.&amp;nbsp; --Jen Li&lt;/span&gt;&lt;/div&gt;
&lt;div class="x_"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="x_"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="x_"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&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>Sat, 16 Nov 2019 09:06:14 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:4d181d8d-21b3-43be-9307-e4c82ed6672a</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>Mon, 11 Nov 2019 09:19:51 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:48f0cfbd-87be-4fed-bf0a-668aeac441e7</guid><dc:creator /><description>Ask a question in a forum.</description></item></channel></rss>