I am trying to use the CC_CASE_API.Accept__(p0_, p1_, p2_, p3_, p4_)
Is there a way to accept the case on behalf of another user? Currently using Apps 10 v8
I am trying to use the CC_CASE_API.Accept__(p0_, p1_, p2_, p3_, p4_)
Is there a way to accept the case on behalf of another user? Currently using Apps 10 v8
Best answer by durette
Be sure to add RESET_FND_USER in your exception error handler to ensure it always gets reset.
Something like…
1BEGIN2 IFSAPP.Fnd_Session_API.Impersonate_Fnd_User(:userId);3 IFSAPP.CC_CASE_API.Accept__(p0_, p1_, p2_, p3_, p4_);4 IFSAPP.Fnd_Session_API.Reset_Fnd_User;5EXCEPTION WHEN OTHERS THEN6 IFSAPP.Fnd_Session_API.Reset_Fnd_User;7 RAISE;8END;9/
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.