Popular Articles

  1. Hotel Master Billing Demo

    Your browser does not support HTML5 video. ...
  2. Inventory Sales for date range

    /* Lists all items sold on confirmed bookings between start and end date     Int1 offers ability to show a shorter date range for comparison sales  */ DECLARE @StartDate AS VARCHAR(20) DECLARE @EndDate AS VARCHAR(20) DECLARE @Int1Start AS VARCH...
  3. Venue Flow Sheet

    Output Information The Venue Flow Sheet is used in conjunction with Hotel Master Billing .   The report itemizes: Each venue selected  Booking reference/number Product usage timeline (based on setup, show start and end times from calendar t...
  4. Asset Overview

    The Asset Record Assets are the individual items that are sent to a client, where each item is tracked in RentalPoint via a unique barcode. You may have five microphones in your warehouse; to track the microphones at an asset level you'll need to...
  5. Format Phone Numbers

    The Format Phone Numbers utility is used to format existing phone numbers in the system to a format specified by the operator. The utility helps to standardize how RentalPoint stores numbers. For example, some phone numbers have the area code mixed ...
  6. Crew Reports Available

    Crew Report Operator Privileges Many Crew Reports have associated operator privileges limiting access to users.  See Setup-->Operators-->Reports Tab for operator privileges governing Crew Reports Crew Assignment This report details the activit...
  7. Bookings with Invoice and Payment Details in the last 30 days

    */ Bookings Invoiced within the last 30 days - Payment details included */ SELECT v.booking_no                           AS [Booking #],        v.showname                             AS [Showname],        v.organizationv6                       AS...
  8. License Refresh Period

    RentalPoint will refresh the record of active logins at regular intervals, based on the setting for Operational Parameter 93.   When attempting to log into RentalPoint, if you get a message that you are already logged in. Wait for up to 15mins and ...
  9. Customers

    Customer / Financial Reports Credit Card Processing in RentalPoint Invoicing Options Cancel/Credit an Invoice Applying Payments Online Payment Option ...
  10. Bookings with Invoice and Itemized Payment Details

    /* Shows Bookings with invoice or payment recorded against them within the last 30 days Change the value of @DaySpan to change the range */  DECLARE @DaySpan  INT ;  SET @DaySpan = 30;  SELECT v.booking_no                                     ...