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…
BEGIN
IFSAPP.Fnd_Session_API.Impersonate_Fnd_User(:userId);
IFSAPP.CC_CASE_API.Accept__(p0_, p1_, p2_, p3_, p4_);
IFSAPP.Fnd_Session_API.Reset_Fnd_User;
EXCEPTION WHEN OTHERS THEN
IFSAPP.Fnd_Session_API.Reset_Fnd_User;
RAISE;
END;
/
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.