...
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
...