Table of Contents |
---|
Summary
This article outlines how to create a custom report to display a list of accounts, their services/packages, and details.
...
Create a SQL view in Microsoft SQL Server Management Studio
Call the view from EngageIP Billing to display the custom report.
This report will contain the following columns:
...
Open Microsoft SQL Server Management Studio
Connect to and open the BOSS database
Right Click on the VIEW directory and select the New View... option
Close the Add Table window
Copy the following query in to the view:
Code Block SELECT dbo.[USER].Name, dbo.Contact.FirstName, dbo.Contact.LastName, dbo.StatementDetails.Amount, dbo.StatementDetails.Detail, dbo.Service.Name AS Service_Name, dbo.Package.Name AS Package_Name, dbo.StatementDetails.PeriodStart, dbo.StatementDetails.PeriodEnd, dbo.Contact.Company FROM dbo.StatementDetails INNER JOIN dbo.[USER] ON dbo.StatementDetails.UserID = dbo.[USER].ID LEFT OUTER JOIN dbo.Contact ON dbo.StatementDetails.ID = dbo.Contact.ID LEFT OUTER JOIN dbo.Package ON dbo.StatementDetails.PackageID = dbo.Package.ID LEFT OUTER JOIN dbo.Service ON dbo.StatementDetails.ServiceID = dbo.Service.ID
Click the Execute SQL button [ ! ] or [CTRL]+R, to run the query
Save the View (no special characters or spaces, under scores can be used in place of spaces). Remember the name of the view as you will need to enter this value in EngageIP Billing
...
Log in to EngageIP Billing
Click Load the Setup tabpage
Select the Custom Reports option under the Configuration section
Click the Add button
Enter a Name (no special characters or spaces, under scores can be used in place of spaces) for the report. The value entered here will become a role permission enabling only accounts within that role to view the custom report. It is recommended that you name all your custom reports with a common prefix so that they will be easy to locate within the role permission list.
Enter the following Connection String; replacing User ID and Password (XYZ) with the correct values
Code Block server=localhost;Trusted_Connection=false;database=boss;uid=XYZ;pwd=XYZ
Enter the name of the view you created in SQL in the Table field
Click Save
Logout and then back in to EngageIP Billing. This will reset the role permission set and allow you to grant access to the report
Click on the Setup tab
Select the Roles option under the Account and Roles section
Select the role from the list to grant view permissions for this report
Scroll down to the Role Permissions section and locate the name of the report within the list
Select the LIST check box next to that permission
Scroll to the bottom of the permission set and click the Save button
Repeat steps 11-15 above until all applicable roles have been granted permission to view the report
Click the Reports tab
Scroll to the bottom of the screen where you will see a new section entitled; Custom Reports
Click on the Name of your Custom Report to view the output
...