Popular Articles

  1. Warehouse Active/Mute Checkboxes

  2. RentalPoint Database Wizard

    ...
  3. Cancel Booking Reason

    Cancel Booking Reason Use this report to view the reasons that operators have cancelled bookings. This report and the Cancellation Reasons in setup are closely related. If users can enter whatever reason they choose it can become difficult to under...
  4. Vendors With a PO

    SELECT v.VendorName AS Company, Vemail AS [Email], v.CellAreaCode AS [Cell Area Code], v.CellDigits [Cell], p.AreaCode AS [Phone1 Area Code], p.Digits AS [Phone1], p2.AreaCode AS [Phone2 Area Code], ...
  5. Future Package Use

    This query is useful if you need to determine how many times packages are being rented within a certain period of time.  This is considered a more advanced query as you will need to adjust the date and or product code as you needs change. *Note i...
  6. Deleted Bookings

    ...
  7. Open a Second Copy of RentalPoint

    A second copy of the software can be opened on the same machine that you are working on. This utility will not use another license. You may need to utilize this option to cross reference bookings, accounts or products. ...
  8. Change Document Paths

    Change Attachments Documents Path The Change All Attachments Document Path is a utility used to perform maintenance on documents that are generated by RentalPoint. When a document is generated in RentalPoint a path is saved that tells the system ...
  9. Bookings with Estimated Shortages

    /* This query shows all bookings after July 1st 2017 and their estimated cross rental amount where a shortage exists*/ select I.booking_no_v32 as [Booking No], B.Showname as [Showname],    Format(b.hire_price,'C') as [Total Rental],    (Select ISNU...
  10. Products not used on Bookings

    Execute these queries using Excel Query Builder /* Products not used on any booking*/ select m.product_code as [Inventory Code],        m.descriptionV6 as [Description],        isnull(i.product_code_v42,'') as [Item Code],        isnull...