Activate Refills Using Patient Portal (2024)

Reduced Outpatient Ancillary Services

IACH will havereduced availability for outpatient ancillary services, including pharmacy, laboratory, and radiology, on Friday, Aug. 9, from 7:30 a.m. to 1p.m.

Due to staff participation in an organizational day, we anticipate longer wait times for these services during this period. Normal operating hours and services will resume at 1p.m.

HomeHealth ServicesPharmacy

Activate Refills Using Patient Portal (1)

Health Services

Redirecting...

Playlist:

").appendTo(controls); mbOptions = $("#multiBandwidthOptions"); createMultiBandwithAnchors(currentVideoHeight); multiBandwidth.hover(function () { mbOptions.show(); }, function () { mbOptions.hide(); }); }; // BUILD MULTI-BANDWIDTH PLAYER TOOL function createMultiBandwithAnchors(videoHeight) { videoHeight = checkVideoHeight(videoHeight); updateMultiBandwithAnchors(videoFilesObj, videoHeight); } // CHECK IF CURRENT VIDEO HEIGHT EXISTS function checkVideoHeight(heightToCheck) { var index = videoFilesObj.length - 1; tempHeight = videoFilesObj[index].height; for (var i = 0; i < videoFilesObj.length; i++) { if (videoFilesObj[i].height == heightToCheck) { tempHeight = videoFilesObj[i].height; break; } } return tempHeight; } // SET PLAYER SOURCE AND PLAY VIDEO function setPlayerSource(src) { videoHasPlayed = false; // INIT createMultiBandwithAnchors(currentVideoHeight); // RECREATE THE ANCHORS var time = myPlayer.getCurrentTime(); // GET THE CURRENT TIME myPlayer.setSrc(src); myPlayer.load(); playVideo(); // SET THE TIMER TO THE CURRENT TIME SO IT WILL BE AVAILABLE WHEN THE PLAYER IS RELOADED if (time > 0) { restartTimer = time; } } // The container element is relatively positioned. MediaElement js creates an absolutely // positioned element within. Absolutely positioned items do not respect the containment // of parent relatively positioned elements. This ensures the heights are constrained. function calculateVideoHeight() { if (debug) console.log('DVIDSPlayer() > calculateVideoHeight()'); var playerHeight = $('.DVIDSVideoPlayerItem video').height(); if (debug) console.log('DVIDSPlayer() > calculateVideoHeight', playerHeight); if (playerHeight) { $('.DVIDSVideoPlayer .video-column, .DVIDSVideoPlayerItem, .DVIDSVideoPlayerItemPlaceHolder').css("min-height", playerHeight + 20); $('.DVIDSVideoPlayerItem .mejs__video, .DVIDSVideoPlayerItem video').css('height', playerHeight); } } function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; function setAspectRatio() { if (debug) console.log('DVIDSPlayer() > setAspectRatio()'); // for portrait aspect ratio, need to wait till video is playing, then redetect height var loopCount = 0; var mainLoopId = setInterval(function () { loopCount++; calculateVideoHeight(); if (loopCount > 10) { clearInterval(mainLoopId); } if (debug) console.log('DVIDSPlayer() > setAspectRatio() > setInterval Running'); }, 500); } function playVideo() { document.getElementById('videoPlayer61148').play(); setAspectRatio(); //var playButton = $(".mejs-overlay-play"); //if (playButton.size() != 0) { // playButton.trigger("click"); //} } myPlayer = new MediaElementPlayer('videoPlayer61148', { videoWidth: '100%', videoHeight: '100%', //enableAutosize: true, pluginPath: "/DesktopModules/SharedLibrary/Plugins/MediaElement4.2.9/", hls: { debug: false, capLevelToPlayerSize: true, capLevelOnFPSDrop: true, startLevel: -1, abrMaxWithRealBitrate: true }, features: ["playpause", "progress", "current", "duration", "tracks", "volume", "fullscreen"], success: function (mediaElement, domObject) { $(".DVPPlayerBackground .mejs__poster-img").attr("alt", "Learn how to activate prescription refills using the MHS Genesis Patient Portal.\u003cbr /\u003eWhat You’ll Learn:\u003cbr /\u003e- How to navigate the portal like a pro\u003cbr /\u003e- The crucial “RX Refill” tab and what it offers\u003cbr /\u003e- Managing multiple patients’ medications seamlessly\u003cbr /\u003e- Insider tips on prescription expiration dates\u003cbr /\u003e- A step-by-step guide to refilling your meds\u003cbr /\u003eWhether you’re a seasoned user or a newbie, this video will empower you to take charge of your health with just a few clicks."); mediaElement.addEventListener('playing', function (e) { if (defaultButton.length) { if (playEventButtonTriggered === false) { defaultButton.hide(); hoverButton.hide(); playEventButtonTriggered = true; } } if (playEventAlreadyTriggered === false) { DVIDSVideoAnalytics.track('play', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics PLAY EVENT'); } playEventAlreadyTriggered = true; } }); mediaElement.addEventListener('play', function (e) { if ($(".mejs__controls").is(":hidden") ) $(".mejs__controls").show(); // if overlay exists, hide it if ($(".mejs__layer.video-overlay").length) $(".mejs__layer.video-overlay").hide(); setAspectRatio(); }); mediaElement.addEventListener('ended', function (e) { DVIDSVideoAnalytics.track('ended', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics ENDED EVENT'); } //play next media var nextURL = "javascript:GetCCURL('https://irwin.tricare.mil/Health-Services/Pharmacy?videoid=932394#DVIDSVideoPlayer61148')"; if (nextURL != "") { document.location = nextURL; } }); //$('#videoPlayer61148').css({'width': '100%', 'height':'100%'}); // EVENT LISTENER FOR WHEN VIDEO TIME HAS BEEN UPDATED mediaElement.addEventListener('timeupdate', function (e) { // IF VIDEO HAS NOT BEEN PLAYED AND SAVED POSITION IS GREATER THAN 0 if (!videoHasPlayed && restartTimer > 0) { // SET THE START TIME FROM THE RELATION IN SECONDS myPlayer.setCurrentTime(restartTimer); // SET THE VIDEO HAS PLAYED FLAG AND CLEAR THE TIMER // OTHERWISE KEEP CONTINUAL LOOP GOING BACK TO THIS TIME // THIS EVENT GETS CALLED AROUND EVERY 250MS videoHasPlayed = true; restartTimer = 0; } }, false); mediaElement.addEventListener('canplay', function (e) { CheckCaptions(); }, false); mediaElement.addEventListener('pause', function (e) { if (defaultButton.length) { defaultButton.removeAttr("style"); hoverButton.removeAttr("style"); playEventButtonTriggered = false; } }, false); mbOptions.delegate("a", "click", function () { var obj = $(this); if (obj.hasClass("chosenMBLink")) { return false; } else { mbOptions.find("a.chosenMBLink").removeClass("chosenMBLink"); obj.addClass("chosenMBLink"); currentVideoHeight = obj.html().substring(0, obj.html().length - 1); setPlayerSource(obj.attr("fileurl")); } mbOptions.hide(); return false; }); // ASSIGN CAPTIONS SELECTOR TO JQUERY OBJECT, SET CLICK DELEGATE AND TURN ON CAPTIONS IF PREVIOUSLY ENABLED captionsSelector = $("div.mejs-captions-selector"); captionsSelector.delegate("input:radio", "click", function () { var lang = this.value; if (lang == "none") { dvpCCEnabled = false; } else { dvpCCEnabled = true; } }); turnOnCaptionsIfEnabled(); } }); $window.on("resize", function () { if ($(".mejs__time-total.mejs__time-slider").attr("aria-valuemax") == "NaN") { $(".mejs__time-total.mejs__time-slider").attr("aria-valuemax",229); } var debouncedFn = debounce(calculateVideoHeight, 250); debouncedFn(); }); // AUTOMATICALLY PLAY VIDEO IF ID PASSED OR VIDEO CLICKED if (true) { playVideo(); //document.getElementById('videoPlayer61148').play(); } }); function updateMultiBandwithAnchors(files, videoHeight) { var mbOptions = $("#multiBandwidthOptions"); var multiBandwidthHTML = []; for (var i = 0; i < files.length; i++) { if (i == files.length - 1) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } else { if (files[i].height != files[i+1].height) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } } } multiBandwidthHTML.push("

"); mbOptions.html(multiBandwidthHTML.join("")); var mbAnchors = mbOptions.children("a"); for (i = 0; i < mbAnchors.length; i++) { if (mbAnchors.eq(i).html() == videoHeight + "p") { mbAnchors.eq(i).addClass("chosenMBLink"); } } mbOptions.css("height", 20 * mbAnchors.length); } function PlayAssetAJAX(id) { var baseUrl = $.ServicesFramework().getServiceRoot('DVIDSVideoPlayer'); $.ajax({ type: "GET", url: baseUrl + "Public/GetAsset?id=" + id, headers: { "ModuleId": 61148, "TabId": 11772, "RequestVerificationToken": $("input[name='__requestverificationtoken']").val() }, success: function (data) { // remove the poster so the initial poster doesn't display while switching videos. $(".DVPPlayerBackground .mejs__poster").css("background-image", ""); $(".DVPPlayerBackground .mejs__poster-img").removeAttr("src"); $(".DVPPlayerBackground video").removeAttr("poster"); // analytics playEventAlreadyTriggered = false; gaUrl = data.AnalyticsUrl; gaTitle = data.AnalyticsTitle; gaID = data.ID; // play through mediaelementjs const $tracks = $(`track.DVIDSCaptions`); if ($tracks.length > 0) { $tracks.attr('src', data.CaptionsUrl); } myPlayer.rebuildtracks(); myPlayer.setSrc(data.Video.HlsSrc); myPlayer.play(); updateMultiBandwithAnchors(data.Bandwidth, 700); }, error: function () { if(debug) { console.log("error loading asset"); } } }); } Video by Jorge Gomez

Activate Refills Using Patient Portal

Irwin Army Community Hospital

June 24, 2024 | 3:49

Learn how to activate prescription refills using the MHS Genesis Patient Portal.
What You’ll Learn:
- How to navigate the portal like a pro
- The crucial “RX Refill” tab and what it offers
- Managing multiple patients’ medications seamlessly
- Insider tips on prescription expiration dates
- A step-by-step guide to refilling your meds
Whether you’re a seasoned user or a newbie, this video will empower you to take charge of your health with just a few clicks.

More

Tags

PrescriptionRefillsPatient PortalMHS GENESIS Patient Portalprescriptions refills

More

Up Next

Now Playing Activate Refills Using Patient Portal
4:12 Pro Sports Medicine at IACH

More Videos

Pharmacy

Main Outpatient Pharmacy

Phone
(785) 239-DOCS(3627)

Hours
Monday -Friday: 8:30 am - 4:15 pm
Closed on federal holidays and weekends.

Location
650 Huebner Road, Fort Riley

Farrelly Health Clinic Pharmacy

Active Duty Only

Phone(785) 240-5536

Hours
Monday -Friday: 8 am -4pm
Closed on federal holidays, training holidays and weekends.

Location
8072 Normandy Drive, Fort Riley

TRICARE Network Pharmacies

Find a Network Pharmacy

Refills

At Fort Riley pharmacies you can expectto be greeted by knowledgeable pharmacists and pharmacy technicians dedicated to serving the Big Red One community. They serve 50,000 beneficiaries and dispense 450,000 outpatient prescriptions each year. Customers can depend on their pharmacist to be a healthcare and information resource center. When picking up prescriptions, customers must have a military ID card for all patients ages 10 years and older. A photocopy or a digital copy (front and back) of the ID card may be used. IACH pharmacies accept electronic prescriptions from providers outside of Fort Riley. Providers: select the site link DoD Ft. Riley E-Pharmacy (E-PHCY). Electronic prescriptions for medications submitted that are not on the formulary will not be filled.

Consult a Clinical Pharmacist

Patients can request a consultation with a clinical pharmacist by calling (785) 239-DOCS (3627) for a polypharmacy appointment.

Medication Disposal

MedSafe is a disposal system for unused and expired medications. The system prevents pharmaceuticals from circulating into community water supplies. The MedSafe receptacle is located in the IACH Outpatient Pharmacy lobby and available for use Monday - Friday during pharmacy hours. Please do not place needles, medical waste, batteries, hazardous materials, inhalers, nor illegal drugs in this receptacle.

Pharmacy Formulary

A formulary is a list of prescription drugs, both generic and brand name, used by prescribers to identify drugs that are currently authorized and available. A committee of providers and pharmacists maintain and update the formulary quarterly. For information about the TRICARE Formulary or medications covered, visit theDefense Health Agency web site. A search tool for the TRICARE Formulary is available at theExpress-Scripts web site.

Home Delivery Option

With TRICARE Pharmacy Home Delivery, picking up your prescriptions is as easy as picking up your mail since maintenance medications are delivered right to your home. Get up to a 90-day supply of your long-term medicines. Enjoy free standard shipping, copayments may apply. Create an account withExpress-Scripts online. You can also download themobile app at this link. Or call877-363-1296and have your prescription bottle handy. We recommend having a 30-day supply of medication on hand while your first order is processed.

About the Pharmacy Team

Irwin Army Community Hospital’s Department of Pharmacy is made up of a team of dedicated healthcare workers composed of Registered Pharmacists, Pharmacy Technicians, Administrative and Supply Management personnel, and Red Cross volunteers. This cohesive team is dispersed throughout IACH’s patient care areas rendering pharmaceutical services to both inpatient and ambulatory patients.

IACH’s pharmacy has a broad array of available pharmaceuticals called a formulary. Our formulary is routinely reviewed and updated to add and remove drugs so as to better serve our patients for their treatment needs. If you have a special medication need that is not covered by the formulary, please inquire about your available options.

IACH Pharmacy is focused on patient safety, working with patients for improved health and well-being through information and education. Your pharmacy staff’s main role is to provide information about your medications, including:

  • the purpose of your prescription
  • making sure you know how to take or use your medication
  • explaining common side effects

The pharmacy team is dedicated to work with you to ensure your best possible health.

Don't forget to keep your family's information up-to-date in DEERS.

Activate Refills Using Patient Portal (2024)

References

Top Articles
Gourmet Today: More than 1000 All-New Recipes for the Contemporary Kitchen by
Instant Pot Carnitas Recipe (Crispy & Juicy!)
2018 Jeep Wrangler Unlimited All New for sale - Portland, OR - craigslist
Drury Inn & Suites Bowling Green
Toa Guide Osrs
Worcester Weather Underground
Best Big Jumpshot 2K23
Boomerang Media Group: Quality Media Solutions
The Ivy Los Angeles Dress Code
Kansas Craigslist Free Stuff
Bank Of America Appointments Near Me
Category: Star Wars: Galaxy of Heroes | EA Forums
Best Restaurants In Seaside Heights Nj
Rls Elizabeth Nj
Zoebaby222
Aquatic Pets And Reptiles Photos
454 Cu In Liters
Oc Craiglsit
Colts seventh rotation of thin secondary raises concerns on roster evaluation
Arboristsite Forum Chainsaw
Uktulut Pier Ritual Site
Puretalkusa.com/Amac
Highmark Wholecare Otc Store
Target Minute Clinic Hours
Phantom Fireworks Of Delaware Watergap Photos
Marokko houdt honderden mensen tegen die illegaal grens met Spaanse stad Ceuta wilden oversteken
Log in to your MyChart account
Select The Best Reagents For The Reaction Below.
How Do Netspend Cards Work?
Sam's Club Near Wisconsin Dells
Que Si Que Si Que No Que No Lyrics
NIST Special Publication (SP) 800-37 Rev. 2 (Withdrawn), Risk Management Framework for Information Systems and Organizations: A System Life Cycle Approach for Security and Privacy
Six Flags Employee Pay Stubs
Gyeon Jahee
Mp4Mania.net1
Ducky Mcshweeney's Reviews
Laff Tv Passport
My.lifeway.come/Redeem
Dadeclerk
Thanksgiving Point Luminaria Promo Code
Überblick zum Barotrauma - Überblick zum Barotrauma - MSD Manual Profi-Ausgabe
craigslist | michigan
Lovein Funeral Obits
Infinite Campus Farmingdale
Verizon Outage Cuyahoga Falls Ohio
Panorama Charter Portal
Ups Authorized Shipping Provider Price Photos
Ciara Rose Scalia-Hirschman
Game Like Tales Of Androgyny
Vcuapi
Kobe Express Bayside Lakes Photos
Latest Posts
Article information

Author: Chrissy Homenick

Last Updated:

Views: 5577

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Chrissy Homenick

Birthday: 2001-10-22

Address: 611 Kuhn Oval, Feltonbury, NY 02783-3818

Phone: +96619177651654

Job: Mining Representative

Hobby: amateur radio, Sculling, Knife making, Gardening, Watching movies, Gunsmithing, Video gaming

Introduction: My name is Chrissy Homenick, I am a tender, funny, determined, tender, glorious, fancy, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.