Using the ProfileConnector
Use the ProfileConnector to retrieve, create, update, and reset profile entries in the employee, profile extension, and other employee tables in the Profiles database. The connector flattens these tables into a single view of the profile data. The ProfileConnector can also be used to change the user state and change whether a user profile is listed as a manager. The ProfileConnector is the only supported way to perform these operations on a profile using IBM® Tivoli® Directory Integrator as IBM® Connections does not support the use of direct database access.
Before you begin
For information about how to configure your development environment for working with the Tivoli® Directory Integrator connectors, and where to place the connectors, see Setting up your development environment.
Database properties are read from the profiles_tdi.properties file, which must be configured prior to using the connector. The Profiles property store must be part of the configuration (.xml) file where your assembly lines are located. For related information, see Connector modes in the Tivoli® Directory Integrator documentation.
About this task
Mode | Description |
---|---|
Iterator |
Iteratively scans database entries, reads their attribute values, and delivers each entry to the work entry to be operated on by subsequent components. All attributes that contain data can be mapped to be returned by the iterator mode.
In addition to the list of profile attributes in the
map_dbrepos_from_source.properties file, the following
attributes can be retrieved in the iterator and lookup modes:
In Iterator mode the following option is available on the connector panel:
|
Lookup |
Fetches records from the Employee table in the Profiles database according to specified search criteria. The following attributes can be used as search criteria:
Note: You can use sourceUrl in combination with one of these
attributes. For example, this mode is used by the dump photos assembly. All search criteria return the entries or attributes of a single employee, or no entries if there is no match. However, in the case of managerUid, multiple entries are typically returned, so if two or more employees report to a manger the "On Multiple Entries" hook (internal name 'lookup_multiple') must be coded. Note that this hook is not invoked if a manager has a single report. Search profiles_tdi.xml for 'lookup_multiple' for a sample of how to obtain the multiple entries. Note that the lookup_multiple hook is a sample of how to code the hook, is in a place it would never be called, and is also disabled. |
Update |
Updates the profile records in the following tables in the Profiles database: EMPLOYEE, GIVEN_NAME, SURNAME, PROFILE_LOGIN, and PROFILE_EXTENSIONS. The following attributes can be used for the search criteria:
Note: You can use
sourceUrl in combination with one of the following
attributes.
In Update mode the following options are available on the connector panel:
The Update mode of the ProfileConnector is used by the update mode of the SyncDBFromSource internal assembly line, which is called by populate_from_dn_file. The ProfileConnector also supports the Compute Changes and Skip Lookup checkboxes in the Advanced area. Consider unchecking the Compute Changes option if you want a state change or mark manager operation to be executed whether or not other changes are necessary. For more information about Compute Changes and Skip Lookup options, see Connector modes in the Tivoli® Directory Integrator documentation. |
Delete |
Deletes records in the Employee table in the Profiles database according to specified search criteria. The Delete mode of the ProfileConnector is used by the delete mode of the SyncDBFromSource internal assembly line, which is called by sync_all_dns. The search (link) criteria is the same as the Lookup mode. |
addOnly |
Adds new records to the Employee table in the Profiles database. |
Procedure
- To add the connector to an assembly line, open the assembly line, and then click Add Component in the Configuration Editor.
- Select Connectors, and then select ProfileConnector from the Components list.
- Enter a name for the connector in the Name field.
- Select a mode from the Mode list, and then click Finish.
What to do next
- Creating a connector to synchronize Profiles data using LDIF – This describes how to use a source other than LDAP to synchronize Profiles user data. This sample shows how to use an LDIF text file as the user data source.
- Creating a connector to synchronize a subset of Profiles data – This describes how to synchronize an explicit set of Profiles users out of cycle from your scheduled synchronization plan supplying a list of users to synchronize to an alternate synchronization utility.
- Using supplied scripts to delete inactive users based on inactivity length – This describes how to use supplied TDI scripts to surface and delete users who have been inactive for specified length of time.