New Articles

  1. Print Barcode(s)

    Print barcode label for an asset or for all assets belonging to a product
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. RP2 (RentalPoint for Windows version) Release Notes

    Access to the latest release is free with a current SSAP/Cloud subscription RentalPoint Cloud clients should email support@rentp.com to request an upgrade to your server Click here to Register for SSAP downloads RentalPoint3 release n...
  8. 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...
  9. Rental Products and Assets

    SELECT G.group_code                               AS [Product Group],        G.group_descv6                             AS [Group Description],        IM.category                                AS [Product Category],        C.cat_descv6             ...
  10. 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],      ...