Examples

Navigation:  System Setup (F4) > Work Pools >

Examples

Previous pageReturn to chapter overviewNext page

Below are examples of work pools:

 

1.  This work pool will get all voice files for site 1000, except EMGs and OCMs:

 

(SITE="1000") AND (REPT_TYPE<>"EMG" AND REPT_TYPE<>"OCM")

END

 

2.  This work pool will get voice files from only two providers for site 1001:

 

(SITE="1001") AND ((DOCTOR="8444") OR (DOCTOR="8445"))

END

 

3.  This work pool will first get voice files for 2 doctors and for all work types except 1 and 9.  Once those are completed, it will get voice files for one doctor and only work type 2.  Having work pools listed on different lines allows all of the work on the first line to be completed, then move on to the next subsequent lines.

 

(SITE="1002") AND (WORKTYPE<>"1") AND (WORKTYPE<>"9") AND ((DOCTOR="357") OR (DOCTOR="4278"))

(SITE="1002") AND (WORKTYPE="2") AND (DOCTOR="1099")

END

 

4.  This pathology work pool will get all stat and high priority work first for sites 4000 and 4001.  It will then get all of the micro and addendum dictations for site 4000. When there are no more voice jobs matching that criteria, it will move on to the next line, it will get all of the micro and addendum dictations for 4001.  When those are complete, it will get all of the gross dictations for site 4000, then all the gross dictations for 4001.

 

(SITE="4000" OR SITE="4001") AND ((PRIORITY="0") OR (PRIORITY="1"))

(SITE="4000") AND ((REPT_TYPE="MICRO") OR (REPT_TYPE="ADD"))

(SITE="4001") AND ((REPT_TYPE="MICRO") OR (REPT_TYPE="ADD"))

(SITE="4000") AND (REPT_TYPE="GROSS")

(SITE="4001") AND (REPT_TYPE="GROSS")

END

 

5.  This review work pool is used in Review Documents to access and edit VR drafts from site 1000.

 

(SITE="1000") AND (REVQUEUE="VRDRAFT")

END

 

6.  This review work pool is used to access documents on Site Review and would be assigned to the appropriate site user.

 

(SITE="1004") AND (STATUS="SR")

END

 

7.  This transcribe work pool is used for the user to only get the RAD voice files during this specific time period, 6:00 AM to 11:30 AM, for site 1000.

 

SITE="1000" AND REPT_TYPE="RAD";START=06:00;STOP=11:30;DAYS=MTWHF

END

 

8. This review work pool is used to access documents on Site Review and would be assigned to the appropriate site user from 5:00 PM Friday to 6:00 AM Monday. And get Site Review documents for site 1002 any day and any time

(SITE="1004") AND (STATUS="SR");START=05:00;STOP=23:59;DAYS=F

(SITE="1004") AND (STATUS="SR");START=00:00;STOP=23:59;DAYS=SU

(SITE="1004") AND (STATUS="SR");START=00:00;STOP=06:00;DAYS=M

(SITE="1002") AND (STATUS="SR")

END