Accounts
Query to find out who created Accounts (MSSQL & PGSQL)
Tested in build PGSQL (14300) and MSSQL (14306) Execute the below queries under Reports->New Query Report. select org_id, org_name from accountdefinition ad where ad.org_name in('Requester Name', 'Palanivel Palras','Muhammad Nadeem Khan') Note down ...
Query to pull Account ID and Site ID (MSSQL & PGSQL)
Tested in Build PGSQL (14300) or MSSQL (14306) Go to Reports Tab >> New Query Report and run the below query. For Postgres & MS SQL select adef.org_id "Account ID", adef.org_name "account",sdef.siteid "Siteid", sdo.name "Site" from sitedefinition ...
Query to show account,site and its departments (MSSQL & PGSQL)
Tested in Build PGSQL (14300) or MSSQL (14306) Please go to Reports-New Query Report and execute this query. select deptdef.deptname "Department",sdo.name "Site", adef.org_name "Account" from departmentdefinition deptdef LEFT JOIN sitedefinition sdef ...
Query on How to find an account ID (MSSQL & PGSQL)
Tested in Build PGSQL (14300) or MSSQL (14306) In order to find the account id, under Reports Tab, click New Query Report run the below query: select adef.org_id "Account ID",adef.org_name "account",sdef.siteid "Siteid",sdo.name "Site" from ...