Task Definition - Custom Input not showing Workgroups

Which IIQ version are you inquiring about?

8.3

<Inputs>
      <Argument helpKey="Identity that will approve the Certification Items" name="approver" required="true" type="Identity" >
        <Prompt>Approver</Prompt>
      </Argument>
</Inputs>

Hi, I’m trying to create a custom TaskDefinition. I need to add custom input field that receives an identity that can be a workgroup.

I tried using the type=“Identity” as can be seen above, but this doesn’t show workgroups. Any ideas?

Thanks

@tmamouros

try to add one more thing

filterString="(workgroup == true)" 

// I am hoping this will work. let me know

 <Inputs>
      <Argument  helpKey="Identity that will approve the Certification Items" name="approver" required="true" type="Identity" filterString="(workgroup == true)" >
        <Prompt>Approver</Prompt>
      </Argument>
 </Inputs>

I tried adding the filterString="(workgroup == true)" to the Argument line, but it didn’t seem to have any effect.

I then tried to use filterString="name.startsWith("A") to test and it also didnt have any effect.

I then started experimented several others filters and it seemed that filters didn’t have any effect when type="Identity". They did work for type="Rule" though

Do you know what can be happening?

Thanks

Will update you today, let me play around.

1 Like

I ended up just using a normal string and searching for the Identity in the rule instead of inputting the Identity .

Thanks anyway

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.