While we can run a stored procedure as follows,
EntityManager em = persistence.getEntityManager();
em.getDelegate().createStoredProcedureQuery("processSalarySheet_sp")
.setParameter("month",month)
.execute();
how can we get the getOutputParameterValue?
.getOutputParameterValue("salaryAmount") .getOutputParameterValue("taxAmount")