Manually Setting a Temp Password?

Hello all,

I feel like this must be a silly question, but is there a special approach to manually set a new password for a customer who may not have access to their email (or if we are testing a problem they have)?

The docs mention creating a new Login, and entering a password, but the new login dialogue window doesn't have a password field. Am I missing a new security feature?

Best,

Nicholas

Parents Reply
  • Hi Nicholas,

    Technically you can still give someone a manual temporary password in the SQL tables by updating VS_CUST_LOGIN - you can just no longer do it within Tessitura and you can no longer lookup the person's password in VS_CUST_LOGIN as it's been replaced by symbols for security reasons.

    Something along the lines of:

    select * from VS_CUST_LOGIN
    Where customer_no = xxxxxxx
    UPDATE VS_CUST_LOGIN
    Set password='Password1', temporary_ind='Y'
    Where customer_no='xxxxxxx'

    Thanks,
    James 

Children
No Data