Introduction
Steps to solve REP-51019 system user authentication is missing in oracle reports 12c
Posted by Venkateshwaran
REP-51019 system user authentication is missing
1) In rwservlet.properties confirm SSO is already disabled:
<singlesignon>no</singlesignon>
2) Disable JAZN security. In rwserver.conf that belongs to the reports server you will use (in-process, standalone or both) change the following entry:
…
<security class=”oracle.reports.server.RWJAZNSecurity” id=”rwJaznSec”/>
…
<job jobType=”report” engineId=”rwEng” securityId=”rwJaznSec”/>
…
Add “!–” at the beginning and “–” at the end, in order oracle.reports.server.RWJAZNSecurity is commented:
<!–security class=”oracle.reports.server.RWJAZNSecurity” id=”rwJaznSec”/–>
and delete securityId=”rwJaznSec” in jobType=”report”:
<job jobType=”report” engineId=”rwEng”/>
Old Value:
<job jobType=”report” engineId=”rwEng” securityId=”rwJaznSec”/>
New Value:
<job jobType=”report” engineId=”rwEng”/>
3) Restart the reports server to apply the changes.
If it was the in-process reports server, or you applied changes in rwservlet.properties, you need to restart WLS_REPORTS.