The Time Slicing job is failing to update the time slice DAILYRESOURCETIMECURVE.
The BG logs show
ERROR 2020-06-27 03:04:40,599 [Dispatch Time Slicing : bg@servername (tenant=clarity)] niku.blobcrack (clarity:clarityuser:sessionid:Time Slicing) Error processing slices
java.lang.NullPointerException
ERROR 2020-06-27 03:04:40,599 [Dispatch Time Slicing : [email protected] (tenant=clarity)] niku.blobcrack (clarity:clarityuser:sessionid:Time Slicing) Exception during blobcrack process
java.lang.NullPointerException
This is due to missing/corrupted assignment information related to a timesheet entry.
1. Run SQL statement:
SELECT * FROM prtimeentry
WHERE prid IS NULL
2. Review results returned. Based on results,
a. Backup the PRTIMEENTRY table
b. Run delete statement:
delete from prtimeentry
where prtimesheetid = xxxxx and prassignmentid = yyyyy;
Commit.