How to display the BT count of a specific application in custom dashboard?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2020 08:31 AM - last edited on 12-03-2020 12:31 PM by Ryan.Paredez
Hi Team,
we have a customer requirement to display the Active BT count in the custom dashboard. I don't find anything related to count the number of BT's.
Does anyone have any idea on how to achieve the requirement?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2020 12:02 AM
Hello Harikrishna,
Unfortunately, at this moment there is no option to display the BT count for an application in custom dashboard. I believe this could be a good enhancement.
Regards,
Nawaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2021 12:41 AM
If you want to check the Bt count of a specific application, you can run the following query in your MYSQL database.
select count(*) from business_transaction b where b.application_component_id in (select id From application_component where application_id = <application id> );