Which IIQ version are you inquiring about?
Version 8.2
Share all details related to your problem, including any error messages you may have received.
Hi,
We created a quicklink . In frst form it should disaply only a set of users in drop down. We tried to pull just one user using queryoptions to display in dropdowm. We were able to print that one user in advanced analyticks when we print the query options. But in Drop down it is displaying all users instead of that one user.
Can you please suggest why querry option does not returns that one value in drop down.
import sailpoint.tools.Util;
import sailpoint.object.*;
import java.util.*;
try{
List identityFinalFilter = new ArrayList();
QueryOptions qo = new QueryOptions();
Filter finalFilter= Filter.eq("name","abc");
//return finalFilter;
qo.add(finalFilter);
log.error("Final Filter::::"+finalFilter);
log.error("Final QO::::"+qo);
/* List finalIdenList = context.getObjects(Identity.class, qo);
for(Identity finalIden:finalIdenList){
log.error(“Final List::::”+finalIden.getName());
identityFinalFilter.add(finalIden.getName());
}*/
//Filter finalResultFilter=Filter.in(“name”, identityFinalFilter);
//return finalResultFilter;
}catch(GeneralException e){
log.error("Error QO : " + e.getMessage());
}
return qo;
</Source>
</Script>
</AllowedValuesDefinition>
</Field>