• How to rollup cycle time and setup time of operations and set that value to a process plan property

    Hi, I have a property called 'duration' in mpp_ProcessPlan and i would like to fill that Property value with sum of cycle time + setup time of all the operations associated with a process plan. how to write server side method for relationship Types…
  • Retrieving Related Items

    I need to take a "Requirement Document" item_number, find all the related "Requirement Document Requirements" and their "Requirements". Looking at the solution for Unit 8 in the v12 Developing Solutions guide I got a pretty good idea how to do this…
  • Adding Relationships - Server Method

    Asking with a more general title, but I'm stuck. I have a need to use a server-side method to generate relationships. Eventually I see this as an admin tool using endpoints whenever I figure out how to pass in a list of names to a method... localhost…
  • using the SQL item type as a view

    Querying a SQL view I built in SSMS from an Aras server method: string SQL_View = "innovator.my_custom_sql_view"; string SQL = "select * from " + SQL_View; Item SQL_qry = inn.applySQL(SQL); This is quick for me because I do a lot in SQL, but I know…
  • How implement method aras to get data from data base oracle using DLL!!!!

    How implement method aras to get data from data base oracle using DLL!!!!contact me! i created method c# in VS .net that connect the database oracle, some one have idea how create method in aras that get this data from data base !!!
  • Browse the versions of an item

    Hi everyone , I'm currently trying to implement a C# method that should be able to browse all the versions of a Part Item , thus we can read the states of the different versions and promote them . but the problem is that I don't know how to…
  • Show form on promote

    Hi, Usecase is as follows need to validate field on promote if case of failure need to popup form(existing) and capture user input. for validation, i tried with pre server method on lifecycle but popping up form not possible from server method.…
  • Get beforeupdate Relationships value from parent item

    there is a item name -Part and it has relation -Part_relation there are a date field and name field in Part_relation when user update , I want to check the field'value Cannot be earlier than Today When encountering an error, I will return inn…
  • Can string interpolation syntax be used in server method?

    Is it somehow possible to use C# string interpolation in server method? For example: ... var text = "the text"; var result = $"This is {text}"; ... The Innovator's default syntax checker gives an error for this code: Error Number: CS1056, Unexpected…
  • 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…
  • 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…
  • User notification from server methods

    Hi, I'm creating server method and populating a new Part structure (+ doing other thing in an method). And last thing from method I would like to send 'on screen ' summary/notification what happened to the user (like inn.newError("Hi, this is what happened…
  • Aras Server Method Event Identification

    I have an requirement where i am calling the same server method on Server Events On After Update, On After Add and On After Delete. Is there a way i can check from which event the method is called.