Hi All,
I have a custom process to export identities from the Person table under dialogue database in the process Orchestration.
There is already a whereClause parameter in my implementation. Please see below.
Dim f As ISqlFormatter = Connection.SqlFormatter
Value = f.AndRelation( _
f.Comparison("IsDummyPerson", False, ValType.Bool, CompareOperator.Equal), _
f.Comparison("IsInActive", False, ValType.Bool, CompareOperator.Equal), _
f.Comparison("IsExternal", False, ValType.Bool, CompareOperator.Equal))
I Would like to add an additional filter into this whereClause. The requirement is the export should ignore identities who do not have an ADS Account.
We have to export only person object who has a managed AD account.
Please let me know, how to add this filter into this whereClause.
Regards,
Subash