Issue with Launching Gantt Chart

While trying to launch Gantt chart Getting “java.lang.NullPointerException” error when trying to launch the Gantt chart in Full Lock mode 

It is happening only one of the projects.

Add Comment
1 Answer(s)

As reported in OTN it can depend by several issues. The one that helped us is related to bug
https://support.oracle.com/MMOS/faces/ui/km/kmBugDisplay.jspx?parent=DOCUMENT&sourceId=1324660.1&kmBugId=12592293

In particular run query below
INSERT INTO OBJECTACL
SELECT TEAM.activity_id,(SELECT CLASS FROM ACTIVITY WHERE
id=TEAM.activity_id),
TEAM.user_id,’,9506,’,sysdate,sysdate FROM TEAM
WHERE TEAM.user_id NOT IN (SELECT USERID FROM OBJECTACL WHERE
OBJECTACL.objid=TEAM.activity_id AND OBJECTACL.objclass IN (18022,18387))
and team.activity_id>0;

For us was necessary to restart agile service

Agile Angel Answered on December 7, 2015.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.