Quality Module Install error
I'm trying to assess the suitability of using Aras for Quality Management in my organization and am unable to install that module. I've installed successfully Innovator 12 and the sample database; however, when I go to install the Quality module from the Aras Update utility it fails with the error at bottom. I've looked on the forum but cannot find similar failures. Any help that anyone can provide would be greatly appreciated. Thanks! Keith <snip> Import package 'com.aras.innovator.solution.QMS_QS' failed with message: Server error Request: <Item type="Identity" id="CA6D245B9B224A6288F056B33E02097E" action="add" doGetItem="0"><description>Quality Department</description><is_alias>0</is_alias><name>Quality</name><Relationships /></Item> Responce: <SOAP-ENV:Envelope xmlns:SOAP-ENV="">schemas.xmlsoap.org/.../"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:af="">www.aras.com/.../faultcode><faultstring><![CDATA[Identity with Name 'Quality' already exists.]]></faultstring><detail><af:legacy_detail><![CDATA[Identity with Name 'Quality' already exists.]]></af:legacy_detail><af:exception message="Identity with Name 'Quality' already exists." type="Aras.Server.Core.PropertiesAreNotUniqueException"><af:innerException message="Violation of UNIQUE KEY constraint." type="Aras.Server.Core.DBUniqueConstraintViolationException"><af:innerException message="Violation of UNIQUE KEY constraint 'C5'. Cannot insert duplicate key in object 'innovator.IDENTITY'. The duplicate key value is (Quality).
The statement has been terminated." type="System.Data.SqlClient.SqlException" /></af:innerException></af:exception><af:item type="Identity" id="CA6D245B9B224A6288F056B33E02097E" xpath="Item"><af:property name="name" value="Quality" /></af:item></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope> Updating com.aras.innovator.solution.QMS_QS to failed release status </snip>39KViews0likes26CommentsInnovator12 installed but eroor:500 occured
Hi, I installed Innovator12 in Windows server 16, I followed the custom installation process and installation is done but when i try to accces through mozilla firefox, Error: Cannot access OAuth Server due to 500 (Internal Server Error) occured. Previously, I have Innovator11 SP12 but i uninstalled due to curious about Innovator12. what can i do to resolve this issue. Thanking you.24KViews0likes11Comments"Classification cannot be changed after saving the item" error using the .Net API to update requirement
I am using Aras 11 SP15. I am trying to update a requirement I created. Here is my code: using System; using System.Collections.Generic; using Aras.IOM; namespace TestArasProject { public static class Program { public static void Main(string[] args) { HttpServerConnection conn = IomFactory.CreateHttpServerConnection(serverUrl, dbName, username, password); Innovator inn = IomFactory.CreateInnovator(conn); conn.Login(); Item updateItem = inn.newItem(requirement, "edit"); string internalId = "FB20D91203DC4E3EB30DBA0CFBE4FD0F"; updateItem.setAttribute("where", "[" + requirement.Replace(' ', '_') + "]." + "config_id" + " = '" + internalId + "' AND [" + requirement.Replace(' ', '_') + "]." + "is_current" + "='1'"); // updating the name of the requirement updateItem.setProperty("req_rm_title", "Test Requirement" + Guid.NewGuid()); Item result = updateItem.apply(); Console.WriteLine(result); Console.WriteLine(result.isError()); Console.ReadLine(); conn.Logout(); } } } I am getting the following error: <SOAP-ENV:Envelope xmlns:SOAP-ENV="">schemas.xmlsoap.org/.../" xmlns:i18n="">www.aras.com/I18N"><SOAP-ENV:Body><SOAP-ENV:Fault> <faultcode>1</faultcode> <faultactor /> <faultstring>Classification cannot be changed after saving the item.</faultstring></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope> I checked the XML which was getting created to update, this XML did not even contain the Classification property nor am I trying to update it. Here is the XML: <Item isNew=\"1\" isTemp=\"1\" type=\"re_Requirement\" action=\"edit\" where=\"[re_Requirement].config_id = '3AFD850B785E43F1B854EE404469FA87' AND [re_Requirement].is_current='1'\"> <req_title>2019_06_24_12_25_42_850_-{AB}</req_title> </Item> I noticed that Classification (Type) is a default value on UI still I need to explicitly pass it through the API. This is not the case with Risk or Complexity type of fields. How do I update a requirement?20KViews0likes14CommentsGetting an error "object Object" on UI when opening or creating a Requirement
I am using Aras 11 SP15. This has the requirements engineering module instead of the requirements management. Whenever I try to open any existing requirement or create a new requirement, I get this following error with the message "object Object". Below is a screenshot of this error. I am able to create, update and view requirements, but this error comes every time.18KViews0likes8CommentsNew Aras 11 SP9 installation http error 503
Hi, I have installed Aras innovator SP9 on a windows 7 professional machine (clean machine). I get Service Unavailable HTTP error 503 on a Chrome browser. We have installed in the following order all windows updates IIS .NET 4.5.1 .NET 4.7 Remote server admin tools -> SMTP server tools sql express 2014 with report servicing Aras innovator SP9 default installation with smtp server I can see sql reports http://localhost/Reports I get error 503 with localhost/innovatorserver I get error 503 with http://localhost Then installed IIS with ALL features I have re-installed aras innovator and still same error Any pointers would be helpful best regards14KViews0likes6CommentsComments after return in Client Method leads to 'event handler' error
Hi community, I discovered a strange behavior in Innovator 12. Let´s assume we have a regular Form with a button that uses the following onClick event: alert("This is just a test button event"); return; // Todo for later: add additional validation This Method will lead to the following error Message: 'Event handler' failed with the message: ReferenceError: func $ BD472BC271CA48E88DE6CB0C7E3CED75 $ _onclick2 is not defined I noticed that the Method works fine, as soon as I remove the comment behind the return. Of course in normal code we most of the time do not have any additional comments after the final return. But when creating new Methods, I often place later used code at the bottom so I can take care for it later. Comments after the return statement were never any problem in Innovator 11. It took me quite a few days until I finally discovered why certain parts of my new code never worked. Is there an explanation for this new behavior? Are there any other new design rules to consider when programming in Innovator 12? Would be happy about any hints to avoid similar effects! Thanks! AngelaSolved13KViews0likes10CommentsFilter List from Part Classification
Hi, instead of classification field in the PART item type, if we want to define subtypes in a separate field in the PART form how can we configure the filter list? For example, we have component types as Capacitors, Resistors, etc. For Capacitors, we have a detailed subtype list and we want to define them as filter list. thank you Duygu13KViews0likes6CommentsIs it possible to associate two or more workflows to the same Item type ?
Hi I am new to Aras. My question is: Is it possible to associate two or more workflows to the same Item Type? At the time of initiating the workflow, how one can pick one of the several workflows? Secondly, using code is it possible to pause a workflow for some time (say 4 minutes) before it executes the next step? Thanks, Ambuj12KViews0likes13Comments"Root element is missing." XML Error when trying to add Requirement through .NET API
I am trying to add a Requirement through the .NET API. Here is my code: //creating new connection HttpServerConnection conn = IomFactory.CreateHttpServerConnection(serverUrl, dbName, username, password); Innovator inn = IomFactory.CreateInnovator(conn); conn.Login(); Item addItem = inn.newItem("re_Requirement", "add"); Dictionary<string, string> fieldDict = new Dictionary<string, string>(); //adding properties fieldDict.Add("managed_by_id", "AD30A6D8D3B642F5A2AFED1A4B02BEFA"); fieldDict.Add("req_priority", "Critical"); fieldDict.Add("classification", "Test"); fieldDict.Add("owned_by_id", "AD30A6D8D3B642F5A2AFED1A4B02BEFA"); fieldDict.Add("req_risk", "Low"); fieldDict.Add("type", "Text"); foreach (KeyValuePair<string,string> field in fieldDict) { addItem.setProperty(field.Key, field.Value); } Item result = addItem.apply(); Console.WriteLine(result); Console.WriteLine(result.isError()); // returns true When I run this program in Visual Studio, I get the following error: <SOAP-ENV:Envelope xmlns:SOAP-ENV="">schemas.xmlsoap.org/.../"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:af="">www.aras.com/.../faultcode><faultstring><![CDATA[Root element is missing.]]></faultstring><detail><af:legacy_detail><![CDATA[Root element is missing.]]></af:legacy_detail><af:exception message="Root element is missing." type="System.Xml.XmlException" /></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope> I am using Aras 11 SP15. Note that this has the Requirements Engineering feature only instead of the Requirements Management, hence the name of the item is re_Requirement. How to solve this issue?12KViews0likes4CommentsARAS 12 - How to remove "Create New XXX" button ?
Hi, I defined an ItemType named "Cost". This is a relationship without related item. There is nothing in the "Can Add" of this ItemType because nobody can create a "Cost". There are only created by code. In ARAS 12, I have this: What should I do in CUI to remove "Create New Cost" ?11KViews0likes8Comments