In order to create a new user in Siebel, do the following steps incrementally:
1. Go to Administration – User >> Employees
2. Here Create a desired User, and Give a Unique USER ID (User ID field is there)
Enter in the Siebel application using userid/pwd SADMIN/SADMIN and create one employee “NEWUSER”
3. Give some responsibility to the employee “NEWUSER”
4. Give some position to this employee “NEWUSER”.
5. After that execute the following Query on DB:
CREATE USER <username> IDENTIFIED BY “<password>”
GRANT “SSE_ROLE” TO <username>;
ALTER USER <username> DEFAULT ROLE “SSE_ROLE”;
[su_divider style=”dotted”]
@AskmeSiebel