What status gets applied to the appointment in my EMR when the "Mark Patient Arrived" setting is enabled in Ocean?

  • When the 'Mark Patient Arrived' setting is enabled in your Ocean tablet/kiosk settings, Ocean will automatically update the respective appointment status in your EMR schedule with the value listed below at your chosen point in time.

Note: The value that Ocean applies to the appointment in the EMR is not customizable.

PS Suite Med Access Accuro OSCAR Pro

How can I use Alternate IDs to check-in existing patients?

If your clinic uses non-health card number IDs (e.g., Student Card Numbers), you can use the 'Alternate ID' setting as the Check-in Type for existing patients.

Note: While Ocean does have the ability to access an Alternate ID stored in an existing patient's chart in the EMR, it does not have the ability to modify the Alternate ID or create brand new patient charts using an Alternate ID.

Prerequisites

In order to utilize the Alternate ID check-in functionality, you must:

  • Be a PS Suite, Accuro, or OSCAR Pro EMR user.
  • Your device must be set to 'Kiosk Mode'.
  • Store the Alternate ID value under the relevant field in your EMR as shown below.
  • Alternate IDs must be numeric only, and unique to each patient.
PS Suite Med Access Accuro OSCAR Pro
  • In PS Suite, the Alternate ID value must be stored in the 'Chart number' field within the patient chart.

To Use Alternate IDs to Check-in at Kiosk:

  • Log into the Ocean Portal, open the 'Menu' in the top left corner, and select 'Tablets & Kiosks'.
  • Find the relevant device group and press 'Edit'.
  • Under the 'Check-In' tab, locate the 'Check-in Type' setting, and select 'Alternate ID'.

    If you are an Accuro EMR user, walk-in functionalities will be unavailable.

  • Press 'Save' in the bottom right corner.
  • Refresh or reboot the Ocean Tablet application on the device.

Why am I seeing notes and/or demographic updates in the wrong chart?

If you review a patient's chart and discover notes contain responses or demographic updates that seem incongruous to the patient, it's highly likely that the wrong patient made updates to another patient's chart.

How does this happen?

This circumstance primarily occurs with devices set to the "staff-initiated" tablet mode. In day-to-day use, accidental user error can occur when staff enter the wrong Ocean reference number into the tablet to unlock it for patient use.

A simply mix up with the reference numbers, for example, entering "132" instead of "123", can queue up a totally different patient than the one staff expect.

When the patient receives the tablet, more often than not, they simply change demographic fields that don't match their own without second thought.

How can I prevent this from happening?

We strongly suggest enabling birthdate validation on all "staff-initiated" devices. This helps ensure that if staff accidentally typo the Ocean reference number used to unlock the tablet, there is a second layer of validation shown directly to the patient to ensure they are the correct person.

Failing to input the correct birthdate will put an immediate halt to the tablet session and force the patient to return the device to the front desk for assistance. This gives staff the opportunity to review and re-enter the correct reference number into the Ocean Tablet application before returning it to the patient.

Enabling Birthday Validation

To turn on birthdate validation, navigate to the "Tablets" tab of the Ocean Portal. Click "Edit" on the applicable tablet group. In the window that opens, select "Introduction", check off "Use Birthday Validation", and finally click the blue "Save" button. (Repeat as necessary for other applicable groups.)

 


How do I make a form appear on the tablet automatically for certain patients?

You can make eForms appear automatically, based on a patient's information, by either adjusting your tablet settings (by adding a completion survey or setting up tablet rules) or by using eForm Actions. These automatically-appearing forms will get added into the queue along with any forms that have been explicitly loaded for the patient (through the EMR or the Ocean Portal).

  • Tablet Settings

    • Completion Survey
    • If you just want to add a patient experience survey to the end of the patient's tablet session, you can use the survey invitation feature, which is located in the Preferences tab of the tablet settings. Simply check the "Display a survey or other form after all other forms are complete" checkbox and select the appropriate survey by searching in the "EForm to Show" box. This is easy to set up, but not that versatile because you can't add in clinical forms.
    • Tablet Rules
    • The most useful method is to set up tablet rules. For any given tablet settings group, you can configure rules using the Ocean scripting language to show a specific eForm if a patient meets a certain set of conditions. For example, you could show the Menopause form for females over the age of 55 (shown below). You can have as many tablet rules in a tablet group as you want. Please review "Tablet Rules" for examples of other commonly-used tablet rules.
  • eForm Actions

    • You can also use "eForm Actions" to trigger eForms to be added for a patient, based on their answer to a certain question on a different eForm. These can be set up using the eForm Editor. Visit our article on eForm Actions for more details on how to set up your eForm Actions.
    • For an example of an eForm Action in action, check out the PHQ-9 and the follow-up suicidal ideation questionnaire that shows up if the patient answers question #9 in a manner that is consistent with suicidal ideation.

Can I get forms to automatically show up, based on the patient's reason for visit?

You can set up Tablet Rules that will automatically show appointment-specific forms. These can be very useful for collecting relevant information from patients before their appointment without having to manually add forms to their queue.

For example, if a patient is booked for a "back pain" appointment, they could automatically be presented with a Back Pain eForm.

Please Note: For all examples provided, Ocean is expecting an exact, case-sensitive, match on your appointment types/reasons. For example, Ocean considers "COPD" and "copd" to be two different terms. Ensure the values entered into your tablet rules are an exact match to your EMR appointment configuration.

PS Suite/Med Access Accuro OSCAR Pro Other EMRs
Note: This feature is only available on the Telus API integration. PS Suite Custom Form integrations are unable to support this functionality.

For all examples provided below, pt.getReasonForVisit() sources the information set under the appointment "Type" dropdown in the corresponding PS Suite and Med Access booking windows.

tablet-rules1-pss.png tablet-rules2-ma.png

Replace instances of "apptType" with the corresponding value from your EMR.


Appointment type is:

If you need to match against a single appointment type.

pt.getReasonForVisit() != null && pt.getReasonForVisit() == "apptType"
Copy Rule
Example: If you wish to match on a "COPD" appointment, your completed script would be as follows: pt.getReasonForVisit() != null && pt.getReasonForVisit() == "COPD"

Appointment type is not:

If you need to exclude a single appointment type but match on all other types.

pt.getReasonForVisit() != null && pt.getReasonForVisit() != "apptType"
Copy Rule

Appointment type is one of:

Match on one or more appointment types.

pt.getReasonForVisit() != null && (pt.getReasonForVisit() == "apptType1" || pt.getReasonForVisit() == "apptType2")
Copy Rule
Note: It is possible to match more than two different appointment types. You can modify the rule to include additional pt.getReasonForVisit() == "" functions separated by || ("or") operators.

Appointment type is not one of:

Exclude one or more appointment types, but match on all other types.

pt.getReasonForVisit() != null && pt.getReasonForVisit() != "apptType1" && pt.getReasonForVisit() != "apptType2"
Copy Rule
Note: It is possible to exclude more than two different appointment types. You can modify the rule to include additional pt.getReasonForVisit() != "" functions separated by && ("and") operators.

Appointment type contains:

Match appointment type(s) by a partial or common value.

pt.getReasonForVisit() != null && pt.getReasonForVisit().includes("apptType")
Copy Rule

Example: If you have a series of appointments containing common terms — Virtual Follow-Up, Virtual COPD, Virtual Prescription — you can match against the common term "Virtual" to target all appointment types.

Please note: The includes() function matches against all instances of the supplied value, meaning something like "Virtually" would also be considered a match as it contains the term "Virtual."


Appointment type does not contain:

Exclude appointment type(s) by a partial or common value.

pt.getReasonForVisit() != null && !pt.getReasonForVisit().includes("apptType")
Copy Rule

For more information on setting up tablet rules, and examples of helpful rules, please refer to the "Tablet Rules" guide.


How do I delete or edit a tablet rule?

Note: To delete a tablet rule, you will need to have administrative privileges.

  • Log in to the Ocean Portal. Click "Menu" in the top left corner and select  "Tablets & Kiosks".
  • Find the tablet grouping you want to make changes to and select the "Edit" option.
  • This will open the Tablet Settings window. Select the "Rules" tab.
  • To DELETE a rule, click on the cog icon to the far right of the rule row and select "Remove" from the drop-down that appears.
  • To CHANGE a rule, edit the Trigger script in the white field for that row.
  • You can learn more about tablet rules in "Tablet Rules".

How do I prevent patients from misusing the Patient Tablets?

Enabling Screen Pinning is the best defence against patient misuse of tablets.

Pinning the Ocean Tablet application will inhibit patients from navigating away from Ocean while using the the tablet. Pinning disables the physical buttons on the device, as well as the notification area that can normally be accessed by swiping down from the very top of the screen.

Please refer to the "Enable Screen Pinning" section of the Securing Your Tablets guide for instructions.



What happens if my tablet is stolen?

Fortunately, nothing too serious.

Absolutely no patient information is stored on the device. Therefore, hackers would be unable to gain access to any patient information from the tablet.

From our Ocean servers, we can instantly and permanently deactivate a tablet’s access to the clinic.

A new tablet can then be ordered from Best Buy, Future Shop or Amazon and is usually available within 2-3 business days.

If one of your tablets has been stolen, sign in to the Ocean Portal to deactivate the tablet as soon as you can. If you run into any troubles during this process, feel free to email our support team (ocean.tips/support) and we’ll be happy to help get things back to normal.


Can I use the tablet for clinician-oriented data entry?

Ocean is a primarily a questionnaire platform (as opposed to a general-purpose tablet-based user interface to your EMR).

Currently the tablet and its associated clinical content is designed predominantly for patient use, not for use by clinicians.

However, clinicians are free to use the tablet for data entry purposes, and there are some forms which work well for this purpose.


Can I use the tablet for other purposes after office hours?

For security reasons, you probably shouldn’t.

It’s difficult to use a computer or tablet for general purposes without leaving personal data behind on the device. It’s especially risky to set it up with your personal passwords for email or other accounts.

With that said, it is your own tablet, and if you are aware of the risk and prepared to secure it yourself, you can customize it however you like.

Since Ocean Tablet runs on the stock Android system, you can browse Google’s Android support sites for more information.


I want to replace one of my tablets with a new tablet. How do I go about doing this?

Yes, you can easily deactivate a tablet that you no longer wish to use.

  • To deactivate your old tablet:

    • Login to the Ocean Portal. Click the "Menu" button in the top left corner and select "Tablets & Kiosks". 
    • Find the tablet(s) that you would like to deactivate, click on it, and select "De-register". The tablet(s) is now deactivated.
  • To set up your new tablet:

    • Follow the usual steps to set up Ocean on your tablet (please refer to our Ocean Tablets Set-Up Guide for detailed instructions).
    • Log in to the Ocean Portal. Click the "Menu" button in the top left corner and select "Tablets & Kiosks".
    • Ensure that your newly set-up tablet is under the right settings group in the Ocean portal. New tablets are automatically added to the "Default" settings group. If you want to change this, drag and drop the new tablet into the correct tablet group.

How do I re-register a device?

  • Re-registering a device 

    • If you'd like to re-register your tablet, you can do so from the Ocean Tablet Administration Menu.
    • Open the Ocean Tablet app on your tablet.
    • Tap the Ocean logo (or cog) at the bottom left corner of the main screen.
    • Enter your Ocean username and password to access the Administration Menu.
    • Note: You will need to have admin access to your Ocean site to be able to access this Administration Menu on your tablet (to learn how to grant admin access to users, please refer to "Granting Users Administrative Access to Your Ocean Site").
    • From the Administration Menu, select "Deregister".
    • Complete all empty fields on the screen.
    • Reboot the Ocean Tablet app.
    • Note: After re-registering a tablet, it will automatically appear in the Default Settings group in the Tablets and Kiosks page of the Ocean Portal.