a!pickerFieldUsersAndGroups() error

Certified Associate Developer

when I used a!pickerFieldUsersAndGroups() in filter .It gives error during selecting Group 

Error:--

cannot apply [EQUALS] to field [assignee] when comparing to value [TypedValue[it =5,v=414].

what operator should I used for it

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to Mathieu Drouin

    a!localVariables(
      local!pick,
      local!data:a!queryEntity(
        entity:cons!LAM_DSE_LEAVES,
        query:a!query(
          filter:a!queryFilter(
            field:"username",
            operator:"=",
            value:local!pick
          ),
          pagingInfo:a!pagingInfo(
            startIndex:1,
            batchSize:-1       
    
          )
        )
      ),
     a!pickerFieldUsersAndGroups(
        label:"picker",
        value:local!pick,
        saveInto:local!pick
      )
      
      
    )

    when I select user so not error but during selecting group it gives error

Children