I have been dealing with an issue recently and am stuck. A particular program(a compiled .p) has codes written where its trying to save values to a particular field in the db.
Below this there is a VAILDATE statement on that table. This is causing the value to revert while doing an update operation. I messaged before and after VALIDATE and can see the value updated before VALIDATE and reverted just after VALIDATE. Please can someone help me on this. Many thanks in advance.
From the documentation:
So, if your UPDATE is reverted after VALIDATE it means that at least one the filed value is not as per constraints. See your table schema and field values. Check if they are okay. It is not clear from your question if you have access to code or not. If you have access to the code and if VALIDATE statement has NO-ERROR, try removing NO-ERROR. If you remove NO-ERROR you can see error message and it might have some clues in it.