Re: Timecard Status TMTCS00
Hello Nick,
It could be that the timecard was entered and saved and then the information in Week Maintenance was changed. For instance, for one of the timecards showing incorrectly as missing in the screen, note the week ending date and see what week number that is for the period. Then run the statement below in SQL Server Management Studio and see what value is in the week_num field.
If, for example, the timecard showing as missing in the Timecard Status screen says it's for week 4, but the week_num in the table below indicates it is week number 5, then that is why it shows as missing. The status screen looks for an exact match on week number and week ending date. If it doesn't find one..it's listed as missing.
Select week_num, period_num, pe_date , * from pjlabhdr where docnbr = 'xxxxxxxxx'
Let me know what you find.