Is there any limitation on length of Access query in Saviynt

yogendragautam
New Contributor II
New Contributor II
MyCWT endpoint access query modification:
  • The current setup in Saviynt entails that ‘MyCWT’ will only be visible in Saviynt if the Country Code (CustomProperty8) of the Requestee at Passport identity level equal ‘FR’.
  • This is managed via the Endpoint access query:
  • WHERE  '${requestee.companyname}' != 'AAA B2B Users' AND '${requestee.customproperty8}' = 'FR'
  • Now our requirement is that users from the following countries listed below will need to be included in the condition on the visibility of the application in Saviynt on Requestee Country Code.
  • This would entail the modification of the Endpoint access query in Production:
  • WHERE  '${requestee.companyname}' != 'AAA B2B Users' AND '${requestee.customproperty8}' in ('FR','ES','PL','UK','MX','CA','US','IN')

 

 

  • Please confirm on above can we add above country in Access query,
  • and If  list continues to extend, limitation on length of Access query in Saviynt can create any issue?
  • Is there any limitation on this?

 

2 REPLIES 2

pmahalle
Valued Contributor II
Valued Contributor II

Hi @yogendragautam ,

Access Query stores in endpoints table and the size of the field accessquery is 255. I don’t think you can put query of size more than that. 

ACCESSQUERY

accessquery

varchar(255)

Indicates the attributes used to raise access queries to endpoints.


Regards,

Pandharinath Mahalle(Paddy)
If this reply answered your question, please Accept it As Solution to help others who may have a similar problem.

rushikeshvartak
All-Star
All-Star

In your current version v5.5 limit is 255 characters.

rushikeshvartak_0-1692762753318.png

 

In v23.x onwards Access Query size is longtext.

rushikeshvartak_1-1692762784934.png

 

 


Regards,
Rushikesh Vartak
If the response is helpful, please click Accept As Solution and kudos it.