Dear All,
I am receiving this error message when business portal user press "Final Approve" button in Material Requisition. Error message is
"Requisition Approval Failure"
"unable to reconcile changes for entity"
i could not understand this. even i had compared the data this requisition with other properly approved requisition in following table. But could no conclude this.
Tables are
ReqMgmtLines / ReqMgmtAuditHistoryLines / ReqMgmtDocument ReqMgmtAuditHistoryDocument / ReqMgmtOpenTasks.
Waitting for the reply desperately. and this happens on 1 out of 30 material requisition requests.
*This post is locked for comments
I have the same question (0)Hi, this can happen when users use CTRL-C and CTRL-V to copy and paste comments into the requisitions. When the comments are pasted into the requisition it leaves some hard returns and that is causing the error.
Run this against the Dynamics database:
update ReqMgmtOpenTasks set ApprovalMessage = replace(ApprovalMessage, char(13)+char(10), '')
where substring(ApprovalMessage,len(ApprovalMessage)-1,2) = char(13)+char(10)
Thanks
Rob