Our design of the purchase request workflow is to make a completed workflow non-editable.
There is a requirement to update a PO number in the form after it was completed. What is the best practice to do this?
1. direct database record update with:
UPDATE dbo.tablename
set FieldName = '999999'
where ColumnFieldName = A11111;
2. update the form to allow only the purchase order administrator to update the completed form
3. update the workflow application to allow only the purchase order administrator to update the completed form
I am new to K2. Are there other possibilities?
Thank you.