• Need Guidance: Prevent On Close Server Event to get called when there is Error (when voting) and the CM Activity is not Closed?

    Hello All, I'm creating a server-side method that sends an email to the Change Leader. It gets invoked " on close " in association with a Change Management workflow activity. The email should be sent only when the activity is closed, and the workflow…
  • What is the is_keyed Property for?

    I am trying to make sure the Part ItemType is correct (our database is a bit messed up). I have been going through and reviewing the information provided in the SolutionImportAML files and found a difference between the item_number property. My system…
  • How to get a property default value?

    Hi everyone, This feels like a silly thing to ask, but I haven't seen anything in the documentation or the forum regarding getting the default value of a property. Some context: I need to evaluate values, but if a value is not present, I need…
  • get property list from item type, issue reading the result item

    hello, i want to get a list of names of propreties that start a certain way 'z%'. i've found aml that was supposed to do it, i' made an iom code to recrate that aml (actually creates the right aml). But what i get is only one item, so i want to know…
  • Decimal data type doesn't support double precision numbers

    I need to store both large and small numbers in a property of type Decimal. I set the Precision to the maximum of 38 and set the scale to 19. I expected that I could store numbers with 38 digits and 19 of those after the decimal point. Instead what…
  • Cannot 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…
  • About File ItemType Indexed_on property?

    Hi, I'm new in aras system and I want to know about the [indexed_on] property of File ItemType. What does it mean and when it is updated? Thanks,
  • Constraints not working on an integer field form

    Hello, I created a new "feedback" ItemType for my users to write remarks about Aras. I want them to rank the priority of the feedback with an integer from 1 to 5. For this, I created a _priority property in the itemtype which is of type "Integer". I…
  • ItemType Pattern No Space

    Good day all. Can someone tell me how to set the Pattern for an ItemType Property to not allow spaces? I read the Tech Tip: Enforce Property Formats Using Regular Expressions and looked at the Regex link provided, but have not been able to make anything…
  • Compressed text property

    Frequently, on ItemTypes, I use a "Text" property to store json data. Because, the json is very verbose and can be compressed to reduce the taken space in database and network traffic, I use LZString.compressToBase64 before a setProperty and LZString…
  • Hi All, Do any one knows property events that are available in ARAS and when they are triggered ? eg. OnEditFinish,onedit and etc Property is on Item and i need to write method which will trigger whenever it's property is updated. Please help

    Property events
  • Stop text input for item property in relationship grid

    Hello, Is it possible to stop users from selecting an item for a item property using text input in something like the part number property of the product model relationship item? I've added a filter to the OnSearchDialog event of the property to limit…
  • Getting an item property in onChangedCell from a recently created relationship vs existing relationship

    I'm running a method on the property event "onChangedCell". When the method is called on a newly created related item, the following statement successfully get's the property: var my_item = parent.item.querySelector("#" + relatedID); var my_property…
  • Unable to set permission_id using AML as well as C# code

    I am trying to change the permission for Part object but getting errors. Here is the AML I am using to change the permission. <AML> <Item type="Part" action="edit" where="item_number='CPR-002'"> <permission_id>708662930B5B484A98C088859500CC42</permission_id…