Greetings,
My requirement is as follows;
I need to create user accounts using WI. I have customized user form accordingly.
I created logon name policy which states that if a user exist in AD another combination should be used.
My logon name convention is
"QA+Initial of FirstName+Initial of LastName+x" where x is a numeric suffix which starts from 1
e.g. for user John Spart it will be QAJS1.
If QAJS1 is present it will create QAJS2
and so on.
This works properly.
But, what I need is,
I need to validate logon name against a database before an user account is created and not against Active Directory. If an account is not present in database then surely it will not be present in AD.
This is an oracle database. In database there is a table which has a field called logonname. This table contains logon names of existing and ex-employees of the company.
I have ARS and QC both.
How can I best achieve this?
Thanks in advance.