@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.
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