Browse By Tags

  • How to color grid cells according to properties that are hidden in grid?

    Hi Community, I hope somebody can give me some hints to solve the following use case. I use an onAfterGet Server Method in ItemType Part that colors certain columns like ‘state’. Now I want to add some color to an additional property that contain…
  • 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…
  • Get item_number of Change Item in PE_ChangeItemTransition

    Hi Community, does anybody know how to get the current Change Process item (basically it´s item_number, like ECO-10001) within the PE_ChangeItemTransition Method? I want to modify the private static void PromoteImpl part around line 5297. This part…
  • 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…
  • How to trigger relationship server event when parent item is copied?

    Hi community, maybe somebody know a solution for this use case. I use a Method in the ItemType 'Part BOM' that is triggered by an onAfterAdd and onAfterDelete event. The Method updates an integer property that indicates how often the corresponding…