The user password for Report Writer is held in the table:
ENPRISE_STAFF
The field is: APP_PASSWORD
This is normally blank as the user MANAGER is setup with no password. Remove the value in this field if someone has added a password.
Run the following scripts:
Identify the staff number for the manager
SELECT *
FROM ENPRISE_STAFF
Script to update the manager password - enter staff number from statement results above:
UPDATE ENPRISE_STAFF
SET APP_PASSWORD = NULL
WHERE STAFFNO =
Comments
0 comments
Please sign in to leave a comment.