• custom API Integration in angular portal

    We are using the Version 9.2 of one idenity and I have created the new page for contracts, and the API is also ready. I would like to integrate the API into the frontend. I typically handle API integration using the HttpClient in a service file. However…

  • Check if session source is Web Portal/API Server in table scripts and column templates

    Hello One Identity experts,

    I hope someone can give me a hint for a challenge I'm facing:

    I'm implementing backend validations for modifications on persons in the table scripts and column templates. Essentially this works quite well by throwing an exception…

  • Concurrency in IDM with a Script

    Is it possible to use concurrency in IDM with a script? For example, a script that retrieves a list of central accounts from a CSV file, then obtains information via an API and writes that information to a product in IT Shop for auditing purposes.

    This…

  • Concurrency in IDM with a script

    Is it possible to use concurrency in IDM with a script? For example, a script that retrieves a list of central accounts from a CSV file, then obtains information via an API and writes that information to a product in IT Shop for auditing purposes.

    This…

  • Is it possible to use old values in a script?

    I would like to use $CustomProperty01[o]$ using Entities

    Dim empQr = Query.From("Person").Where(String.Format("CentralAccount = '{0}'",cAcc)).SelectAll()
    Dim empRes = Session.Source.GetCollection(Of Person)(empQr, EntityCollectionLoadType…

  • How can I retrieve the unencrypted value of data that is encrypted in a Configuration Parameter?

    I have a script that needs to retrieve sensitive information encrypted within a configuration parameter. However, I am unable to decrypt it. How can I decrypt the parameter to access its original value?

  • Script examples

    Hi folks. I am new to the community and have been working with 1IM for around 4 months. I have not been able to find any scripting guides in the official documentation, so I am wondering if there's any articles or guides on scripting in 1IM, as for example…

  • INSERT Event Trigger Not Firing When Inserting via Script

    Hi everyone,

    Has anyone managed event triggers following an insert operation via script into a table?
    The issue is that when inserting an object into any table through a script, the INSERT event is not triggered. This happens because the operation is done…

  • Issue with script executing Oracle stored procedures

    Hello, 

    we have upgraded the OneIM from version to 9.2 - so there is no more Devart components. So I have replaced the logic using Oracle.ManagedDataAccess.Client (as suggested in the script samples in the installation folder), but when I try to run the…

  • Script optional parameters in process step

    Hi,

    i have the following script which has optional parameters:

    Sub CCC_RunQBMLimitedSQL(
    statementNameOrUID As String,
    Optional ByVal parameter1Name As String = Nothing,
    Optional ByVal parameter1Value As Object = Nothing,
    Optional ByVal parameter2Name…

  • Calling API Script results in HTTP 200 with custom success message, but no new object is created

    Hi there,

    we have a problem while calling a script via rest api.

    Following is configured:

    - a new api systemuser ist created

    - the api systemuser is assigned to a permissions group

    - the permissions group...

    ...has view and insert rights on ADSGroup

  • Script install quantum.migratorcmd.exe --INSTALL

    Hi everyone,

     

    I've been facing challenges with the script-based installation of Identity Manager using the quantum.migratorcmd.exe tool. However, everything proceeds smoothly when I use the Configuration Wizard for installation.

    From what I understand…

  • Install Identity Manager with script, quantum.migratorcmd.exe

    Hi everyone,

    I've been facing challenges with the script-based installation of Identity Manager using the quantum.migratorcmd.exe tool. However, everything proceeds smoothly when I use the Configuration Wizard for installation.

    From what I understand…

  • REST API Script - how to determine the authenticated user's username within 1IM Script?

    Would like to know API authenticated user account calling script function so that we can log which account is calling what API script with what parameters, and may be provide finer access control to the script functionality.

    Right now, I see just one…

  • Script for pwd gen and putting value into ADSAccount UserPassword field

    Hello,

    I've created a script to generate the password taking the xobjectkey as input and returning the password.

    Here's my script:

    Public Function CCC_Generate_Password_AD(ByVal accountXobjectKey As String) As String
    Dim entity As IEntity = Session…

  • Mail notification for bulk accounts expiration

    Hello everyone,

    I'm looking to set up a monthly email notification system for managers, informing them about users whose accounts are set to expire in the upcoming month.

    Currently, I have a process in place for individual email notifications, with…

  • Contractor To permanent Employee

    Hi All,

    I have one scenario in which I have to write a code for  contractor who are getting promoted to employee in a company for this i have to check whether the Employee ID of the contractor and the newly created employee record  are same.

    If they are…

  • Update Script for a value column in Person Table

    I wanna add a modification to a script used for calculating the CCC_Direction value in the Person table. CCC_Direction corresponds to the Direction to which the person is attached calculated based on DepartmentName column in the Department table as shown…

  • One Identity Manager - Send Email On Deletion of PersonHasQERResource

    I need to send a email when a QERResource assignment is deleted. So I made a email template using PersonHasQERResource and my first thought was to assign it to a custom process for PersonHasQERResource on the Delete event. However, its deleted before this…

  • Designer: how to execute a custom script once

    Hello everyone

    I haver developed a custom script in Designer. It updates certain attribute of the the users in Active Directory. It is a script designed to be executed once. I have compiled it and when I test the script it does not update the attribute…

  • Check consistency error generate by a script

    Hello everyone,

    i have an issue with the script below :

    Dim f As ISqlFormatter = Connection.SqlFormatter
    Dim whereClause_AccProductGroup As String
    Dim whereClause_ITShopOrg As String
    Dim whereClause_PWODecisionMethod As String
    
    whereClause_AccProductGroup…

  • Creating a process step that allows you to remove all groups from a user

    I need to create a process that removes all groups from a user, however when trying to use the HandleComponent I can only remove a single group from the user.

  • How to generate a unique progressive sequence number in a script?

    Hi,
    I am facing templates for the first time. How can I generate the Central User Account in the form "X" + a progressive number (the number should be retrieved from a "sequence" stored on the DB)?
    Thank you


  • 810222 - Error executing script due to a null reference

    Hi all,

    I have a simple process, linked to JobAutoStart table that executes a simple script.

    I've created this process in development environment and everything works fine.

    The problems are coming out while porting the same configuration in production…

  • Unable to access output parameter

    I'm attempting to build a process-flow that calls a script, and then uses the last string output by the script to determine if the script failed or not.  I've checked the out-of-the-box Job-Chains and have found about 30 examples of Job-Steps that…