I get following hibernate error. I am able to identify the function which causes the issue. Unfortunately there are several DB calls in the function. I am unable to find the
This happens when you declared the JSF Managed Bean as
@RequestScoped;
when you should declare as
@SessionScoped;
Regards;