Updated Articles

  1. Print Barcode(s)

    Print barcode label for an asset or for all assets belonging to a product
  2. Stock Take - Non Barcoded Items

    /*All NON Barcode tracked Rental Items in Inventory Master with a count of whats out on a booking */ Select m.product_code AS [PRODUCT CODE],           m.descriptionV6 AS [DESCRIPTION],          ('$' + convert(VARCHAR,convert(money,m.cost_price...
  3. Inventory Report of Assets (Maintenance Detail included)

    Shows a list of all assets in inventory, their current status and if they're out on a booking.
  4. Inventory Report of Assets (No Maintenance Detail)

    /* Lists all assets in the Database */ SELECT I.groupfld               AS [Group],        g.group_descv6           AS [Group Desc],        i.category               AS [Category],        c.cat_descv6             AS [Category Desc],        A.pr...
  5. Microsoft Office and RTF Fields

  6. RTF Colour Insert Fields

    RTF Insert fields are used to merge data from your RentalPoint Database with your MS Word template.  Fields are available via the RentalPointInsertFieldModules.dll  file or see our list of RTF Insert fields . Colour Insert Fields INSERT FIEL...
  7. Keyboard Shortcuts

    OPTION FUNCTION KEY CTRL SHIFT ALT Duplicate Booking F1   Quick Look F2 New Inquiry F3 Change Operator F3   Open F4 Print Booking Hardcopy F5 Acc...
  8. DocuSign

    How does it work? RentalPoint provides functionality to request a digital signature from clients for Fast Report custom documents produced in RentalPoint (i.e. Quotes, Booking Hardcopies etc) by integrating with DocuSign software! Requirements ...
  9. Product Setup

    The Product Record Add/Edit Products To add, edit duplicate or delete items in your inventory tree you can use the buttons located on the right side of the F10 window, or you can use the right click options. General Tab  This section is use...
  10. 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...