Unable to post Timesheet Batches in K212 HRP Application.

Modified on Wed, 27 Jul, 2022 at 1:19 PM


DESCRIPTION:
  Unable to post Timesheet Batches getting the below Error Message:


 

CAUSES:  The Batch Number had an apostrophe in it.


SOLUTIONS:  Run the below script to change the Batch Number by removing the apostrophe.


select * from EC_TIMESHEET_BATCH_CTRL

where BATCH_NO = 'EA''s'

and PAY_NUMBER = '2022xx'

 

update EC_TIMESHEET_BATCH_CTRL

set BATCH_NO = 'EA'

where BATCH_NO = 'EA''s'

and PAY_NUMBER = '2022xx

 


select * from EC_EMPLOYEE_TIMESHEETS

where EMP_GROUP_CODE = 'xxxxxx'

and PAY_NUMBER = '202213'

and BATCH_NO = 'EA''s'

 

update EC_EMPLOYEE_TIMESHEETS

set BATCH_NO = 'EA'

where EMP_GROUP_CODE = 'xxxxxx'

and PAY_NUMBER = '2022xx'

and BATCH_NO = 'EA''s'

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article