An unexpected error occurred: failed to lazily initialize a collection of role: sailpoint.object.Application.secondaryOwners, could not initialize proxy - no Session

Which IIQ version are you inquiring about?

[84.p4]

Please share any images or screenshots, if relevant.

Please share any other relevant files that may be required (for example, logs).

logs.txt (26.5 KB)

Share all details about your problem, including any error messages you may have received.

[Replace this text with the problem that you are facing]

@pnjadhav9 Could you please share more detials? When this error is coming? Like while launching any quicklink or while submit reqest in OOTB request page, or some thing else.

checked your loggers.

A context.decache() call executes inside your workflow/rule chain after an Application object has been resolved but before Provisioner.execute() / IdentityLibrary.provisionProject() runs. Decache detaches that instance from the Hibernate session.

Fix: Remove the decache() call from the rule/step that runs between resolving the Application and the “Compile Project” step in this subcase chain . If decache is required at that point for memory reasons, re-resolve the object immediately after via context.getObjectById(Application.class, id).

thank for the response, I am not able to find any such method where we are executing decache before Provisioner.execute() I will go through the entire LCM provisioning workflow again to try your solution

can you send your workflow code and any referenced rule as well??