Previous Topic: How LDAP Queries Limit the User and Group Data in the Report SnapshotNext Topic: Deploy the Report Package on a Report Portal That You Installed with CA ControlMinder r12.0


LDAP Syntax Considerations

Consider the following when you write LDAP queries to limit the scope of the Active Directory snapshot:

Use the string & or the Unicode character reference to represent the ampersand character in any other context. Use the string < or the Unicode character reference to represent the left angle bracket character in any other context.

Example: The Ampersand Character

The following snippet of a snapshot parameter XML file specifies to include all Active Directory user data in the report snapshot. The LDAP query in the snippet uses the & string to represent an ampersand:

<export object ="com.ca.ppm.export.ADUsersCollector">
	<where attr="%USER%" satisfy="ANY">
		<value op="EQUALS">(&amp;(objectClass=user))</value>
	</where>
</export>