Popular Articles

  1. Customer / Financial Reports

  2. Import Products from Excel File

    Using the 'Rental Inventory.csv' template available with the Product Import option in RentalPoint2, you can import Products and their assets using the 'Clear All' 'Match All' functionality in the system.  Please take a backup of your database befo...
  3. Customer Details with Last Booking Entered

    SELECT   BK.CUST as [Customer Code],          c.OrganisationV6 as [Organization],          c.contactv6 as [Contact],                    c.phone1countrycode as [Phone1 Country],          CONCAT(c.Phone1AreaCode,' ', c.Phone1Digits) as [Phone1],      ...
  4. Assets Purchased Between Date Range

    SELECT IM.groupfld      AS [Product Group],        IM.category      AS [Product Category],        A.product_code   AS [Product Code],        IM.descriptionv6 AS [Product Description],        A.asset_code     AS [Bar Code Number],        A.descr...
  5. Transfers

    /* All transfers and bookings they are assigned to*/ Select T.booking_no     [Code],        isnull(B.OrganizationV6,'') [Company],        DATENAME(WEEKDAY,T.ddate) [Out],        convert(varchar,T.ddate,105)  [Date],         dbo.MakeTime(T.de...
  6. Autoemail Send Error

    AutoEmail errors are reported to the data\logs\errorlog.txt The message below will be reported when an operator has auto-emailing turned on but the operator doesn't have an email address set up. Use the query below with Excel Query Builder ...
  7. Invoices Outstanding

    /* Shows all invoices with outstanding balance based on closing date with an outstanding amount greater than InvValue */ DECLARE @ClosingDate AS  VARCHAR (20) DECLARE @InvValue  FLOAT SET @ClosingDate = '2024-2-1' SET @InvValue = 1 SELECT B.b...
  8. Technicians - Active

    SELECT c.RPwebservicesActive, c.Contactname, c.username, c.password, c.ID,c.CustCodeLink FROM tblContact c   INNER JOIN tblInvMas IM ON C.ID = IM.ContactID ORDER By Contactname
  9. Rental Items not returned between date range

    /* All gear that didn't make it back from a show within date range, include warehouse status of the booking */ DECLARE @StartDate AS VARCHAR(20)  DECLARE @EndDate AS VARCHAR(20)  SET @StartDate = '2024-03-30' SET @EndDate = '2024-07-01' sele...
  10. Equipment Grid Client or Warehouse Active/Mute Functionality

    ...