• How to use method to CompleteActivity for PPM?

    Former Member
    Former Member
    How to use method to CompleteActivity for PPM? I want to use Method or API to complete Activity for project. Thank you.
  • Method for event OnAfterUnlock

    I want to promote an Item state when user unlock it. I create a simple LifeCycle: "New"-->"Released" I habe write this method on the server event "OnAfterUnlock": Innovator inn=this.getInnovator(); string itemnumber = this.getProperty("item_number…
  • Implementing User Options like Choose CM Options

    I am working on a user option dialog where they can pick and choose some values[ logged_in_group to start with] I have created placeholder properties in Core_GlobalLayout for this. Get_IdentityMembership_Details and Get_AllGroups_Details works fine…
  • How to call a server method with applyMethod() from a client method, and use the results coming back from server

    Server Method : [Get_Identity_Details] Can run this and get results I want. Hard coded guid for test Innovator inn = this.getInnovator(); string sessionuserid = this.getProperty("sessionuser","invalid"); if (sessionuserid == ""){} StringBuilder sql…
  • 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…
  • How can I populate a new item using parent item properties?

    I have a scenario where when a user is adding a relationship to an item I need to populate the new item with information that is dependent on the source item. Example: A user has Part "5555" open then while in the Documents tab the user clicks the …
  • Method ondue

    Hi, I have a doubt. There are two methods that we must program in the innovatorServer service that runs on the server side: Send Email Reminders: used to execute reminders (onReminders) Check Escalations: this is to execute the scaled activities.…
  • JS event when ECO form is saved?

    Former Member
    Former Member
    Hi, Is it possible to listen to some kind of event to know when the ECO form has been saved? I have an HTML field in the ECO form, where I have put a <script> tag with JavaScript code within. I want that code to execute again after the form has been…
  • OnBeforeNew - unable to get new Item

    Former Member
    Former Member
    I am trying to pre-populate a property value before the create new item form is displayed. However I cant seem to get the reference of the new item, and I am using JavaScript for client event: OnBeforeNew of the Item. var itm = this.newItem(this.getType…
  • permissions error when trying to create a relationship

    Former Member
    Former Member
    Dear Community, I am new to Aras and am trying to create a relationship from a RelationshipType with the following code: Innovator inn = this.getInnovator(); string ItemId = this.getID(); Item item = inn.getItemByKeyedName("GivenItem", "100013-001…
  • Resource default location

    Hi , I am new to this platform.Every time I refer a file in my method I have to give it the full path. Is it possible to change the default location of the file my method wants to refer without giving it the full path.  i.e Just by providing the name…
  • add a method using C#

    Hi, I am new to this domain.Is it possible to add a method to an item type using C sharp code? If so, could you give an example.
  • Disabeling dropdown field on form

    Former Member
    Former Member
    Hi I have some strange behaviour on a form. I have added a JaveScript method to disable some fields if the property "kam_is_transferred" = 1. The strange thing is the code below works on text fields but it doesn't seem to work on dropdown fields. Is…
  • Method to Get the Item related to In Basket Activity

    Hi all, I am trying to write a method to get the Item that is linked to the inbasket task of a user. What is the recommended way to writeup method code to get the Item dynamically? Any input would be very helpful. Thanks!