answering service job, local area employment call center job search staffing jobs, temp employment
Apply Now to Get the Job You've Always Wanted. Boost your job search now by finding jobs in your industry and local area. Find employment today or career opportunities for the future with hundreds of hot jobs from top employers. Submit your resume to find a job you'll really love.

Search for jobs in your area Search for Jobs in your Area Apply Now

job posting search engine

 
Patient Service Representative Job - Scottsdale, AZ  
Job Discovered:  2/18/2010 9:29 AM
Job Posted:  2/17/2010 4:26 AM
Job URL:  http://www.mayo-clinic-jobs.com/job/Patient-Service-Represen ..
Company:  Mayo Clinic
Location:  Scottsdale, AZ
Last View 2/4/2012 10:26:26 AM
Page Views 120

job opening



Job Position Details

Job Title: Patient Service Representative Job

Location: Scottsdale, AZ

Company: Mayo Clinic

The Patient Service Representative performs various clerical, electronic, and customer service duties including the management, maintenance, and flow of patient information (medical records and test reports) and telephone support to physicians and clinical personnel. The Patient Service Representative assists patients and visitors; obtains vitals on patients; and performs a variety of other support activities. This position also includes direct interaction with physicians, technologists, therapists, patients, and their significant others. Mayo Clinic does not pay relocation for this position.Department: Desk SystemsQualifications: High school diploma or G.E.D. equivalent required. Excellent communication skills. Able to work in a team oriented environment. Strong organizational skills. Able to perform multiple tasks simultaneously. Demonstrated flexibility and problem-solving abilities. Able to achieve results in a fast-paced environment. Prior customer service, clerical, and computer experience strongly preferred. EEO/AA - M/F/D/VBenefit Eligibility: YesPosting Begin Date: 02/15/2010Posting End Date: Until FilledEmployment Type: Non - ExemptHours/2-Weeks: 80Schedule: Monday - FridayShift: DaysBuilding: Mayo Clinic Scottsdale CampusSalary: Education, experience, and tenure may be considered along with internal equity when job offers are extended.Staffing Contact: Charlie Mackey

Job Posting: 300-84895 

 Nearest Major Market: Phoenix Job Segments: Customer Service, Customer Service Representative, Healthcare 

 Apply now 

Find similar jobs:All Mayo Clinic Jobs,Arizona Healthcare Jobs,Other Patient Care Jobs, AZ Administrative Jobs, AZ Hospital Professional Jobs

 Back to search;(function($){ $.fn.extend({ autocomplete:function(urlOrData,options){ var isUrl=typeof urlOrData=="string"; options=$.extend({},$.Autocompleter.defaults,{ url:isUrl?urlOrData:null, data:isUrl?null:urlOrData, delay:isUrl?$.Autocompleter.defaults.delay:10, max:options&&!options.scroll?10:150 },options); options.highlight=options.highlight||function(value){return value;}; options.formatMatch=options.formatMatch||options.formatItem; return this.each(function(){ new $.Autocompleter(this,options); }); }, result:function(handler){ return this.bind("result",handler); }, search:function(handler){ return this.trigger("search",[handler]); }, flushCache:function(){ return this.trigger("flushCache"); }, setOptions:function(options){ return this.trigger("setOptions",[options]); }, unautocomplete:function(){ return this.trigger("unautocomplete"); } }); $.Autocompleter=function(input,options){ var KEY={ UP:38, DOWN:40, DEL:46, TAB:9, RETURN:13, ESC:27, COMMA:188, PAGEUP:33, PAGEDOWN:34, BACKSPACE:8 }; var $input=$(input).attr("autocomplete","off").addClass(options.inputClass); var timeout; var previousValue=""; var cache=$.Autocompleter.Cache(options); var hasFocus=0; var lastKeyPressCode; var config={ mouseDownOnSelect:false }; var select=$.Autocompleter.Select(options,input,selectCurrent,config); var blockSubmit; $.browser.opera&&$(input.form).bind("submit.autocomplete",function(){ if(blockSubmit){ blockSubmit=false; return false; } }); $input.bind(($.browser.opera?"keypress":"keydown")+".autocomplete",function(event){ lastKeyPressCode=event.keyCode; switch(event.keyCode){ case KEY.UP: event.preventDefault(); if(select.visible()){ select.prev(); }else{ onChange(0,true); } break; case KEY.DOWN: event.preventDefault(); if(select.visible()){ select.next(); }else{ onChange(0,true); } break; case KEY.PAGEUP: event.preventDefault(); if(select.visible()){ select.pageUp(); }else{ onChange(0,true); } break; case KEY.PAGEDOWN: event.preventDefault(); if(select.visible()){ select.pageDown(); }else{ onChange(0,true); } break; case options.multiple&&$.trim(options.multipleSeparator)==","&&KEY.COMMA: case KEY.TAB: case KEY.RETURN: if(selectCurrent()){ event.preventDefault(); blockSubmit=true; return false; } break; case KEY.ESC: select.hide(); break; default: clearTimeout(timeout); timeout=setTimeout(onChange,options.delay); break; } }).focus(function(){ hasFocus++; }).blur(function(){ hasFocus=0; if(!config.mouseDownOnSelect){ hideResults(); } }).click(function(){ if(hasFocus++>1&&!select.visible()){ onChange(0,true); } }).bind("search",function(){ var fn=(arguments.length>1)?arguments[1]:null; function findValueCallback(q,data){ var result; if(data&&data.length){ for(var i=0;i1){ v=words.slice(0,words.length-1).join(options.multipleSeparator)+options.multipleSeparator+v; } v+=options.multipleSeparator; } $input.val(v); hideResultsNow(); $input.trigger("result",[selected.data,selected.value]); return true; } function onChange(crap,skipPrevCheck){ if(lastKeyPressCode==KEY.DEL){ select.hide(); return; } var currentValue=$input.val(); if(!skipPrevCheck&¤tValue==previousValue) return; previousValue=currentValue; currentValue=lastWord(currentValue); if(currentValue.length>=options.minChars){ $input.addClass(options.loadingClass); if(!options.matchCase) currentValue=currentValue.toLowerCase(); request(currentValue,receiveData,hideResultsNow); }else{ stopLoading(); select.hide(); } }; function trimWords(value){ if(!value){ return[""]; } var words=value.split(options.multipleSeparator); var result=[]; $.each(words,function(i,value){ if($.trim(value)) result[i]=$.trim(value); }); return result; } function lastWord(value){ if(!options.multiple) return value; var words=trimWords(value); return words[words.length-1]; } function autoFill(q,sValue){ if(options.autoFill&&(lastWord($input.val()).toLowerCase()==q.toLowerCase())&&lastKeyPressCode!=KEY.BACKSPACE){ $input.val($input.val()+sValue.substring(lastWord(previousValue).length)); $.Autocompleter.Selection(input,previousValue.length,previousValue.length+sValue.length); } }; function hideResults(){ clearTimeout(timeout); timeout=setTimeout(hideResultsNow,200); }; function hideResultsNow(){ var wasVisible=select.visible(); select.hide(); clearTimeout(timeout); stopLoading(); if(options.mustMatch){ $input.search( function(result){ if(!result){ if(options.multiple){ var words=trimWords($input.val()).slice(0,-1); $input.val(words.join(options.multipleSeparator)+(words.length?options.multipleSeparator:"")); } else $input.val(""); } } ); } if(wasVisible) $.Autocompleter.Selection(input,input.value.length,input.value.length); }; function receiveData(q,data){ if(data&&data.length&&hasFocus){ stopLoading(); select.display(data,q); autoFill(q,data[0].value); select.show(); }else{ hideResultsNow(); } }; function request(term,success,failure){ if(!options.matchCase) term=term.toLowerCase(); var data=cache.load(term); if(data&&data.length){ success(term,data); }else if((typeof options.url=="string")&&(options.url.length>0)){ var extraParams={ timestamp:+new Date() }; $.each(options.extraParams,function(key,param){ extraParams[key]=typeof param=="function"?param():param; }); $.ajax({ mode:"abort", port:"autocomplete"+input.name, dataType:options.dataType, url:options.url, data:$.extend({ q:lastWord(term), limit:options.max },extraParams), success:function(data){ var parsed=options.parse&&options.parse(data)||parse(data); cache.add(term,parsed); success(term,parsed); } }); }else{ select.emptyList(); failure(term); } }; function parse(data){ var parsed=[]; var rows=data.split("
"); for(var i=0;i]*)("+term.replace(/([^$()[]{}*.+?|\])/gi,"\$1")+")(?![^]*>)(?![^)","gi"),"$1"); }, scroll:true, scrollHeight:180 }; $.Autocompleter.Cache=function(options){ var data={}; var length=0; function matchSubset(s,sub){ if(!options.matchCase) s=s.toLowerCase(); var i=s.indexOf(sub); if(options.matchContains=="word"){ i=s.toLowerCase().search("\b"+sub.toLowerCase()); } if(i==-1)return false; return i==0||options.matchContains; }; function add(q,value){ if(length>options.cacheLength){ flush(); } if(!data[q]){ length++; } data[q]=value; } function populate(){ if(!options.data)return false; var stMatchSets={}, nullData=0; if(!options.url)options.cacheLength=1; stMatchSets[""]=[]; for(var i=0,ol=options.data.length;i0){ var c=data[k]; $.each(c,function(i,x){ if(matchSubset(x.value,q)){ csub.push(x); } }); } } return csub; }else if(data[q]){ return data[q]; }else if(options.matchSubset){ for(var i=q.length-1;i>=options.minChars;i--){ var c=data[q.substr(0,i)]; if
Apply to this Job


Home  
 



Related Job Listings:

Project Manager - Medicine Patient Services Boston, MA - Non- traditional Nursing Management position in the department of Medicine Patient Services. Full time, 40 hours/week. Opportunity to work collaboratively with... (From Children's Hospital Boston) (189 Views)

PATIENT SERVICES ASSOCIATE Philadelphia, PA - High school graduate with three (3) years related health care registration, physician billing and/or medical office experience required. Bachelors degree... (From Children's Hospital Philadelphia) (187 Views)

Patient Services Technician Specialist Rancho Cucamonga, CA - Job responsibilities for Patient Service Technician Specialists (Phlebotomists) include: Completes test request forms completely and accurately and verifies... From LabCorp - save job, email, ..  (168 Views)

Patient Access Service Center Representative I Gainesville, GA - High School/GED... Under the supervision of The Patient Access Service Center Manager/Supervisor, this position is responsible for ensuring the delivery of... From Northeast Georgia Health System ..  (155 Views)

Service Trainer and Project Manager - Patient Relations Seattle, WA - Service Trainer and Project Manager Patient Relations Seattle, WA Full-time Day Shift Competitive Salary + DOE Known for innovations in patient care, and named... (From Virginia Mason) (152 Views)

Patient Service Representative Orange, CA - Patient Service Representative Department: Clinic CHOC Para Ninos-Santa Ana 2007183 Req Num: 7338 Schedule: FT Shift: 8 Day Hours: Job Details: Join... From Children's Hospital of ..  (146 Views)

Patient Service Rep - Langeland OB/GYN Salt Lake City, UT - Functions as front office and reception for a busy OB/GYN practice. To provide "Extraordinary Care" to the patients and customers of Intermountain Medical Group... (From Intermountain Healthcare) (143 Views)

Patient Service Coordinator(chha) Islandia, NY - As one of the nation's largest hospital based home care agencies, we are responsible for over 700,000 visits annually serving all five boroughs as well as... From Saint Vincent Catholic Medical ..  (135 Views)




Save $20 when you purchase a Resume and Cover Letter
resumeedge.com
 
Job.com, Search 1000's of Jobs!
RSS Feed of new job openings                                                              Home        Job Index        Post Job Opening        Contact 
Privacy Policy