Getting name property mismatch error while changing data type - Text to Date
The Property has data type Text and we are trying to set to Date on that time we are getting : - does not match the required 'name' property pattern: ^[a-zA-Z](\w*| +\w+)*$]] Request: <Item type="ItemType" id="5738793931D64D938F02558135C20FE8" action="add" doGetItem="0"><Relationships><Item type="Property" id="41C87DE9CAC2484DBE736F80016D1C87" action="add"><data_type>date</data_type><pattern>short_date_time</pattern></Item></Relationships></Item> Response: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:af="http://www.aras.com/InnovatorFault"><faultcode>SOAP-ENV:Server.PatternMismatchException</faultcode><faultstring><*$]]></faultstring><detail><af:legacy_detail><*$]]></af:legacy_detail><af:exception message="The specified value () does not match the required 'name' property pattern: ^[a-zA-Z](\w*| +\w+)*$" type="Aras.Server.Core.PatternMismatchException" /><af:item type="ItemType"><af:property name="name" value="" /></af:item></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>Solved0Views0likes2CommentsIs there any limitation on number of item to be added in the form for ARAS 11?
Hai , I am working on ARAS 11 th version, There I do have a form with 1005 Items(html,textbox,line,Rectangle,form action….ect.). But I can’t able to add more Items than this. If I try to add new Item The entire form disappear from the workstation , And I have to delete the newly added Item to get the form back. Is there any limitation to add number of Item in ARAS 11? Kindly help me back.0Views1like2CommentsError - The resource you are looking for has been removed, had its name changed, or is temporarily unavailable
Good day all. This error comes up every now and then, but has happened several times this week. I have seen it trying to add a Method, the main form would not display. One of my users had the problem with trying to access a custom ItemType (main form again), but I did not have the problem. We were in a Skype call at the time and the user was sharing their screen, so we were looking at the same entry at the same time. Last night a user said that they were receiving the error when trying to log in. I had the user clear their cache and they could get in. Does anyone know why this happens? When I was looking through the forums, everything seemed to be from 2016 or older and didn't really have any answers. We are using v11 SP10. Thank you for the help.10KViews0likes8CommentsChange Login Error Based on Disabled Account
Good day all. Is it possible to have a different login error message if an account exists and is disabled? We disable accounts after a specified number of days of inactivity. I would like to have a unique message for people trying to log in and their account is disabled. Thank you for your help.2.2KViews0likes3CommentsCannot insert the value NULL into column 'NAME',
Hi all, I recently exported updates to the CAD item type from a development environment to our QA testing environment. I am running into an error when updating the NAME property to required: Cannot insert the value NULL into column 'NAME', table 'ArasTest_12sp14.innovator.CAD'; column does not allow nulls. UPDATE fails. The statement has been terminated. in SQL: [ALTERTABLECOLUMN] Any ideas? The field can be updated in the environment in which I exported without issue. Did I maybe miss something in my package definition?Solved5KViews0likes2CommentsItem Type issue after Import
Hi Community, Strange issue here. I exported an item type and it necessary relationships over from my development server to my test server. I can create items in the item type just fine. What I can't do - Edit the item type - presented with error "The method 'cui_ivicb_edit_click' failed." The claim flag still checks but no changes can be saved as the UI never updates to allow Save/Done/Discard. I thought this could be a cui issue but the configuration for this matches as well. Nothing special was done to any of the CUI items. The name field is blank on the item type along with a few other discrepancies from the original item as seen in development. When using the Search for or Home screen tile button, the search grid does not load. I have tried re-verifying relationships and exported items. Everything lines up. Any suggestions would be helpful.Solved2.9KViews0likes3CommentsCatch 'ItemCannotBeLockedException' when state=Released
Hi, I'm trying to figure out how and where to catch the Aras.Server.Core.ItemCannotBeLockedException exception so I can display a custom error message to the users. The executed AML is: <Item type="MyCustomDocument" id="123134234234" action="lock" />. I have implemented "OnBeforeLock()" on my custom ItemType, but this method isn't hit when the ItemType is in Released state. So the question is at which stage in code is the exception thrown and can I sort of catch it or handle it?3.1KViews0likes2CommentsCreating dynamic list failed! ERROR: "property 'setState' of undefined"
Hello dear all, I'm very new to ARAS! I'm using ARAS V11SP14 and ... trying to create a dynamic list, which will be filled with articles. The code is from the Programmers Guide 12.0 "7.32 How to Create a Dynamic List" (after small modifications): ##################################################################### var inn = aras.IomInnovator; var dropdown = inn.getItemById("LIST", "29D876DB477243D6AB00C96466CE240C"); var list = inn.newItem("List", "get"); list.setAttribute("select", "id, keyed_name"); list = list.apply(); listOfTeams = [{ label: '', value: '' }]; listOfTeams.push({ label: "testtt", value: "esttt" }); dropdown.component.setState({list: listOfTeams}); return null; ############################################################################# The Error: Technical MessageEvent handler failed with message: TypeError: Cannot read property 'setState' of undefined [function onload$user$handler(e) { try { if (onload1(e) === false) return false; } catch (exp) { aras.AlertError(aras.getResource('', 'ui_methods_ex.event_handler_failed'), aras.getResource('', 'ui_methods_ex.event_handler_failure_msg', exp.description ? exp.description : (exp + ' [' +arguments.callee.toString()+ ']')), aras.getResource('','common.client_side_err')); return false; } }] Stack TraceClient Side Error ########################################################## I have no ideas how to fix it and cant find a solution in the forum as well! Thanks in advance!1.5KViews0likes0Comments