Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

query to get Disconnected security system ,endpoint,entitlement type and entitlement list

Harish1
New Contributor II
New Contributor II

Hi Team,

we require query to get list of Disconnected security system ,endpoint,entitlement type and entitlement list from Saviynt.

As we tried using below query but getting syntax error. Can you please suggest?

SELECT
ss.systemname,
e.endpointname AS 'EndpointName',
et.displayname AS 'EntitlementType',
ev.entitlement_value AS 'Entitlement Value',
ev.description AS 'EntitlementDescription',
FROM
securitysystems ss
INNER JOIN endpoints e
ON ss.systemKey = e.securitysystemKey
INNER JOIN entitlement_values ev
ON ae.entitlement_valuekey = ev.entitlement_valuekey
INNER JOIN entitlement_types et
ON ev.entitlementtypekey = et.entitlementtypekeyWHEREss.systemname in('')

 

Regards,

Harish

3 REPLIES 3

AmitM
Valued Contributor
Valued Contributor

Hi @Harish1 

SELECT ss.systemname,e.endpointname AS 'EndpointName',
et.displayname AS 'EntitlementType',
ev.entitlement_value AS 'Entitlement Value' FROM securitysystems ss
JOIN endpoints e ON ss.systemKey = e.securitysystemKey
Join entitlement_types et on et.endpointkey=e.endpointkey
Join entitlement_values ev on ev.entitlementtypekey=et.entitlementtypekey
where (ss.reconapplication ='false')

Thanks,

Amit

If this answers your query, Please ACCEPT SOLUTION and give KUDOS.

dgandhi
All-Star
All-Star

Can you please try below?

dgandhi_0-1709655947075.png

 

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

rushikeshvartak
All-Star
All-Star

SELECT ss.systemname,
       e.endpointname       AS 'EndpointName',
       et.displayname       AS 'EntitlementType',
       ev.entitlement_value AS 'Entitlement Value',
       ev.description       AS 'EntitlementDescription'
FROM   securitysystems ss
       INNER JOIN endpoints e
               ON ss.systemkey = e.securitysystemkey
                  AND ss.automatedprovisioning = false
       INNER JOIN entitlement_types et
               ON et.endpointkey = e.endpointkey
       INNER JOIN entitlement_values ev
               ON ev.entitlementtypekey = et.entitlementtypekey 

 

rushikeshvartak_0-1709695056368.png

 

 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.