Browse By Tags

  • Code Snippet: Generic, Reusable Code to Get All Identities In a Group

    Hello everyone, Here is a code snippet to retrieve all identities in a identity (group) recursively. As I faced this requirement multiple times, and Innovator not having a standard function for it, I decided to create it myself. //*************…
  • Calling SearchDialog from Server method

    Hi, Is it possible to show SearchDialog from a Server method? I can use MaximazableDialog in Javascript to show the SearchDialog and get the response in callback. But I want to use such facility in a Server method. In my particular case, I am trying…
  • How to use GrantIdentity ?

    Hi, On ARAS R12, in server methods, I needed to grant temporary some rights. For that, I did something like this: var myidentity = Aras.Server.Security.Identity.GetByName("My Identity"); bool PermissionWasSet = Aras.Server.Security.Permissions.GrantIdentity…