Which IIQ version are you inquiring about?
*Unsure
*Unsure
Hi @akallur03,
It is possible to execute the select query in sailpoint forms. Please see the code below for reference.
<Field displayName="Test query" helpKey="test the sql query" name="Test query">
<Script>
<Source>
import sailpoint.object.*;
String row;
Iterator iterate=context.search("sql: SELECT firstname FROM spt_identity where id='id'",null,null);
while(iterate.hasNext()){
row=iterate.next();
}
return row;
</Source>
</Script>
</Field>
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.