Skip to main content

User administation - account switching

When multiple dealerships are setup in Service Scheduler, users may be granted access to swap between sites without logging out and logging back in.

image.png

image.png

To enable, "Allow account change" must be checked in each account they are allowed to swap from. And the user must exist in all accounts with the same "username"

The passwords do not need to match, however in a local account setup it is recommended to avoid confusion if the user attempts to login to an account from the login dialog.

image.png

Create global user

Open HeidiSQL

Navigate to root catalog

image.png

image.png

image.png

image.png

image.png

1 = administrator, 0 = standard user

image.png

Right click and press Run (or F9)

if you had more than one user you can add multiple lines, just ensure each line ends with ';'

CALL `create_global_user`('Bob Johnson', 'bob.johnson@company.com', 'bob.johnson', 'unhackable', '0');
CALL `create_global_user`('Jane Johnson', 'jane.johnson@company.com', 'jane.johnson', 'unhackable', '0');

image.png