• Delete Org membership API doesn't work

    I'm trying to call the DELETE API on the endpoint /ApiServer/portal/roles/config/membership/Org/{UID_Org}/{UID_Person} and I receive a 200 OK response with the membership details, but the membership is not removed. Is it an API problem? Has anyone encountered…

  • PersonInOrg API miss in portal qerClient

    The method that calls the /portal/candidates/PersonInOrg endpoint (standard API) is not present in Agular Project's qerClient.

    There are methods for PeronInAERole, PersonInDepartment, PersonInProfitCenter... But PersonInOrg miss.

    In API Server --…

  • Delete PersonInOrg Object (all Direct assignments) via Script ?

    HI,

    I am using Version 8.1 and trying to delete the assignments from PersonInOrg table via a Script.

    I have written below script to test the method calls.

    Already tried

    • Running from designer (test script option).
    • Also, tried putting script in a process…
  • Trigger process when user is assigned dynamic business role

    Hi,

    We are trying to fire a prosess when a user is inserted/assigned to a dynamic business role. I can trigger an prosess from PersonInOrg with the "insert"-event when i add the user directly to a business role, but when the user is added with a dynamic…

  • Cannot insert object in PersonInBaseTree because the associated object in BaseTree does not exist.

    Hi,

    As I am inserting an entry into PersonInOrg during updating of Person table, I received the following error:

    Error during execution of statement: insert into PersonInOrg (UID_org, UID_Person)....

    Cannot insert object in PersonInBaseTree because…

  • Updating PersonInOrg

    Hi

    Normally, we will want to update DB objects as such 

     

    Dim dbObject As IEntity
    
    dbObject = Session.Source.Get("CustomTable", UID_CustomTable)
    dbObject.PutValue("column", "newvalue")

    We wanted to update UID_Org in PersonInOrg…

  • How to delete an entrance from table PersonInOrg (through DB)?

    Hi everyone,

    I want to create a process which triggers when a user gets deactivate.

    This process has two parts:

      1. It unsubscribes already all "assigned" requests -> DONE

      2. I want to delete all existing entrances in the table PersonInOrg…