Create a Data Source to Display UserName and UserIdent
Because the Active Directory User Conversion Wizard displays TMS users with just the UserIdent information, you might find it helpful to create a data source that displays both the UserName and the corresponding UserIdent information.
-
Go to Data Sources > New to open the Data Sources New screen
-
Start by selecting the Segment that this data source should be part of
-
Fill in a Name for the data source (ex: User Name List)
-
Fill in a Description of this data source (ex: Listing of TMS UserNames and UserIdents).
-
In the Type drop-down menu, select Detailed List.
-
In the Module drop-down menu, select Resources
-
Both Category and Sub Category are optional fields, but aid in searching for a data source
-
In the Status drop-down menu, select Active
-
Click Save
-
When the Data Source Editor tab becomes available, select the tab and then select the SQL sub tab
-
Click Override SQL
-
When the confirmation pop-up window appears, confirm that you want to override the SQL entry
-
In the SQL entry box, enter the following SQL code:
SELECT UserName, UserIdent
FROM tblTMSUsers
WHERE Disabled = '0'
ORDER BY UserName
-
Click Save to commit your changes.
If you select the Designer sub tab, you can see the data returned by the SQL you entered.