cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

App Broker License Reclamtion Reporting

Looking for a report on App Broker version 2019 r1 License reclamation detail of Keep reasons with user and device

(1) Solution
CharlesW
By Level 12 Flexeran
Level 12 Flexeran
No, there is no report which provides the responses.. You would have to look at the question responses under request details... You could get the responses by running something similar to the following against the AB DB:

select ProductName, q.response from WD_MyAppsAlert as maa
inner join WD_ResponseQuestionAuditTrail q on maa.RequestID = q.RequestID_FK
where maa.response = 'keep'

View solution in original post

(1) Reply
CharlesW
By Level 12 Flexeran
Level 12 Flexeran
No, there is no report which provides the responses.. You would have to look at the question responses under request details... You could get the responses by running something similar to the following against the AB DB:

select ProductName, q.response from WD_MyAppsAlert as maa
inner join WD_ResponseQuestionAuditTrail q on maa.RequestID = q.RequestID_FK
where maa.response = 'keep'