Symantec Access Management

 View Only
Expand all | Collapse all

CA SSO : How to apply case insensitive filter using Expressions?

  • 1.  CA SSO : How to apply case insensitive filter using Expressions?

    Posted Oct 26, 2018 03:19 AM

    Hi,

     

    May I know is there a way to apply case insensitive filter using Expressions?

     

    Note : I am able to achieve it using following expression

    RDN(FILTER(LCASE(SM_USERGROUPS), LCASE('*REQ_GROUP*')))

     

    But the problem is that I am not able to retain the original Case of Group Name as I have to convert them to Lower Case for filtering purpose.

     

    Regards,

    Dhilip



  • 2.  Re: CA SSO : How to apply case insensitive filter using Expressions?

    Posted Oct 26, 2018 08:42 AM

    Dhilip Dhi1ip

     

    We can use ~CONTAINS.

    Operators - CA Single Sign-On - 12.8 - CA Technologies Documentation 

     

    RDN(SM_USERGROUPS) ~CONTAINS 'REQ_GROUP'

    or

    RDN(SM_USERGROUPS) ~CONTAINS ('REQ_GROUP')

     

    NOTE : I haven't tested this expression, but I had a previous experience where ~CONTAINS did not work, but CONTAINS worked. If this happens, please raise a Defect with CA Support for SE; as it is not working as per what is documented.