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)

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)
Top Articles
Daily horoscope: August 13, 2024 astrological predictions for your star sign
Lee Health hiring Pharmacist - Golisano Children&#39;s Hospital in Fort Myers, FL | LinkedIn
Omega Pizza-Roast Beef -Seafood Middleton Menu
Artem The Gambler
Davita Internet
Amtrust Bank Cd Rates
Geodis Logistic Joliet/Topco
Best Transmission Service Margate
Apply A Mudpack Crossword
David Packouz Girlfriend
Chase Claypool Pfr
CSC error CS0006: Metadata file 'SonarAnalyzer.dll' could not be found
Craigslistdaytona
Valentina Gonzalez Leaked Videos And Images - EroThots
Power Outage Map Albany Ny
Hmr Properties
Sam's Club La Habra Gas Prices
Equipamentos Hospitalares Diversos (Lote 98)
"Une héroïne" : les funérailles de Rebecca Cheptegei, athlète olympique immolée par son compagnon | TF1 INFO
Glenda Mitchell Law Firm: Law Firm Profile
Mail.zsthost Change Password
Empire Visionworks The Crossings Clifton Park Photos
2013 Ford Fusion Serpentine Belt Diagram
[PDF] NAVY RESERVE PERSONNEL MANUAL - Free Download PDF
Jayah And Kimora Phone Number
Wiseloan Login
Catchvideo Chrome Extension
Cal State Fullerton Titan Online
Leben in Japan &#8211; das muss man wissen - Lernen Sie Sprachen online bei italki
Abga Gestation Calculator
Calculator Souo
Cbs Trade Value Chart Week 10
Flixtor Nu Not Working
R Nba Fantasy
Tokyo Spa Memphis Reviews
Collier Urgent Care Park Shore
Priscilla 2023 Showtimes Near Consolidated Theatres Ward With Titan Luxe
Elizaveta Viktorovna Bout
How To Paint Dinos In Ark
Stafford Rotoworld
Craigslist Mexicali Cars And Trucks - By Owner
Union Corners Obgyn
Anhedönia Last Name Origin
The Angel Next Door Spoils Me Rotten Gogoanime
Promo Code Blackout Bingo 2023
Nearest Wintrust Bank
Unpleasant Realities Nyt
F9 2385
De Donde Es El Area +63
Southern Blotting: Principle, Steps, Applications | Microbe Online
The Love Life Of Kelsey Asbille: A Comprehensive Guide To Her Relationships
Noaa Duluth Mn
Latest Posts
Article information

Author: Prof. An Powlowski

Last Updated:

Views: 6338

Rating: 4.3 / 5 (44 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Prof. An Powlowski

Birthday: 1992-09-29

Address: Apt. 994 8891 Orval Hill, Brittnyburgh, AZ 41023-0398

Phone: +26417467956738

Job: District Marketing Strategist

Hobby: Embroidery, Bodybuilding, Motor sports, Amateur radio, Wood carving, Whittling, Air sports

Introduction: My name is Prof. An Powlowski, I am a charming, helpful, attractive, good, graceful, thoughtful, vast person who loves writing and wants to share my knowledge and understanding with you.