Sometimes a standard report doesn't answer the exact question on the table. Query Builder gives power Users and administrators direct read access to the database — type any SELECT statement, click Execute, and the results appear instantly in a dynamic grid you can export to Excel. It's the fastest path from a business question to a verified answer.
Go to Setup > System > Query Builder.
Query Builder, your saved ad-hoc Reports against tenant data.
SELECT statement in the query box.SELECT TOP 100 Code, Name, Balance FROM Accounts ORDER BY Code
SELECT c.Name, SUM(i.Total) AS TotalSales
FROM Invoices i
JOIN Customers c ON c.Id = i.CustomerId
WHERE i.State = 'Posted'
GROUP BY c.Name
ORDER BY TotalSales DESC
SELECT statements are allowed. Data-modification queries (INSERT, UPDATE, DELETE) are blocked — you cannot accidentally change data from this screen.TOP N or WHERE filters to limit the result set when working with large tables — an unbounded query on a busy database can be slow and return more rows than you need.SUM(i.Total) AS TotalSales) to get readable grid headers.Related: Widgets · Dashboards · System Logs · Financial Reports · Inventory Report · Audit Trail
Was this page helpful?