- APCDBUL7 ; IHS/CMI/LAB - Routine to create bulletin ;
- ;;2.0;IHS PCC SUITE;;MAY 14, 2009
- ;;Borrowed from ACHSP1, ACHSP1A
- ;;
- ;;Here's how to make this work:
- ;;
- ;;1. Create your message in subroutine WRITEMSG
- ;;2. Identify recipients in GETRECIP by setting APCDKEY
- ;;3. Make changes in SUBJECT and SENDER as desired
- ;;4. Rename this routine in appropriate namespace and
- ;; call on completion of patch or upgrade
- ;
- I '$G(DUZ) W !,"DUZ UNDEFINED OR ZERO.",! Q
- D HOME^%ZIS,DT^DICRW
- ;
- NEW XMSUB,XMDUZ,XMTEXT,XMY,DIFROM
- KILL ^TMP($J,"APCDBUL")
- D WRITEMSG,GETRECIP
- ;Change following lines as desired
- SUBJECT S XMSUB="* * * IMPORTANT RPMS INFORMATION * * *"
- SENDER S XMDUZ="Cimarron Medical Informatics"
- S XMTEXT="^TMP($J,""APCDBUL"",",XMY(1)="",XMY(DUZ)=""
- I $E(IOST)="C" W !,"Sending Mailman message to holders of the"_" "_APCDKEY_" "_"security key."
- D ^XMD
- KILL ^TMP($J,"APCDBUL"),APCDKEY
- Q
- ;
- WRITEMSG ;
- F %=3:1 S X=$P($T(WRITEMSG+%),";",3) Q:X="###" S ^TMP($J,"APCDBUL",%)=X
- Q
- ;;
- ;;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- ;;+ This message is intended to advise you of changes, +
- ;;+ upgrades or other important RPMS information
- ;;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- ;;
- ;;PCC Data Entry Patch 7 has been installed. This patch includes the following:
- ;;modifications/enchancements:
- ;;
- ;; - add field OBJECTIVES to the PED mnemonic and re-orders the prompts
- ;; - adds creation of VA VISIT ID for Electronic Health Record Project
- ;; - Updated PCC form print with New fields for education
- ;; - added Hospital Location to visit lookup screen, if it exists
- ;; - added new visit display option which limits each lab entry to selected fields
- ;; - added entry of refusals to the DM Update option
- ;; - added a new option to complete 'orphan' blood bank visits
- ;; - added a new option to complete 'orphan' microbiology visits
- ;; - added option to the Supervisor menu for updating PCC links
- ;; (You must be given a special key for this option)
- ;; - Added 3 report that lists all allergies on the problem list for a group of pts
- ;; - New Mnemonics:
- ;; ALG - entry of allergies into Allergy tracking (not Problem list)
- ;; (you must have a special key to do this)
- ;; HHF - Historical Health Factor entry
- ;; UAS - Unable to Screen Refusal type
- ;; HADA - historical ada codes
- ;; ADA - ada codes (from outside your facility)
- ;;+++++++++++++++++++++ end of announcement +++++++++++++++++++++++
- ;;###
- ;
- GETRECIP ;
- ;* * * Define key below to identify recipients * * *
- ;
- S CTR=0,APCDKEY="APCDZMENU"
- F S CTR=$O(^XUSEC(APCDKEY,CTR)) Q:'CTR S Y=CTR S XMY(Y)=""
- Q
- APCDBUL7 ; IHS/CMI/LAB - Routine to create bulletin ;
- +1 ;;2.0;IHS PCC SUITE;;MAY 14, 2009
- +2 ;;Borrowed from ACHSP1, ACHSP1A
- +3 ;;
- +4 ;;Here's how to make this work:
- +5 ;;
- +6 ;;1. Create your message in subroutine WRITEMSG
- +7 ;;2. Identify recipients in GETRECIP by setting APCDKEY
- +8 ;;3. Make changes in SUBJECT and SENDER as desired
- +9 ;;4. Rename this routine in appropriate namespace and
- +10 ;; call on completion of patch or upgrade
- +11 ;
- +12 IF '$GET(DUZ)
- WRITE !,"DUZ UNDEFINED OR ZERO.",!
- QUIT
- +13 DO HOME^%ZIS
- DO DT^DICRW
- +14 ;
- +15 NEW XMSUB,XMDUZ,XMTEXT,XMY,DIFROM
- +16 KILL ^TMP($JOB,"APCDBUL")
- +17 DO WRITEMSG
- DO GETRECIP
- +18 ;Change following lines as desired
- SUBJECT SET XMSUB="* * * IMPORTANT RPMS INFORMATION * * *"
- SENDER SET XMDUZ="Cimarron Medical Informatics"
- +1 SET XMTEXT="^TMP($J,""APCDBUL"","
- SET XMY(1)=""
- SET XMY(DUZ)=""
- +2 IF $EXTRACT(IOST)="C"
- WRITE !,"Sending Mailman message to holders of the"_" "_APCDKEY_" "_"security key."
- +3 DO ^XMD
- +4 KILL ^TMP($JOB,"APCDBUL"),APCDKEY
- +5 QUIT
- +6 ;
- WRITEMSG ;
- +1 FOR %=3:1
- SET X=$PIECE($TEXT(WRITEMSG+%),";",3)
- IF X="###"
- QUIT
- SET ^TMP($JOB,"APCDBUL",%)=X
- +2 QUIT
- +3 ;;
- +4 ;;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- +5 ;;+ This message is intended to advise you of changes, +
- +6 ;;+ upgrades or other important RPMS information
- +7 ;;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- +8 ;;
- +9 ;;PCC Data Entry Patch 7 has been installed. This patch includes the following:
- +10 ;;modifications/enchancements:
- +11 ;;
- +12 ;; - add field OBJECTIVES to the PED mnemonic and re-orders the prompts
- +13 ;; - adds creation of VA VISIT ID for Electronic Health Record Project
- +14 ;; - Updated PCC form print with New fields for education
- +15 ;; - added Hospital Location to visit lookup screen, if it exists
- +16 ;; - added new visit display option which limits each lab entry to selected fields
- +17 ;; - added entry of refusals to the DM Update option
- +18 ;; - added a new option to complete 'orphan' blood bank visits
- +19 ;; - added a new option to complete 'orphan' microbiology visits
- +20 ;; - added option to the Supervisor menu for updating PCC links
- +21 ;; (You must be given a special key for this option)
- +22 ;; - Added 3 report that lists all allergies on the problem list for a group of pts
- +23 ;; - New Mnemonics:
- +24 ;; ALG - entry of allergies into Allergy tracking (not Problem list)
- +25 ;; (you must have a special key to do this)
- +26 ;; HHF - Historical Health Factor entry
- +27 ;; UAS - Unable to Screen Refusal type
- +28 ;; HADA - historical ada codes
- +29 ;; ADA - ada codes (from outside your facility)
- +30 ;;+++++++++++++++++++++ end of announcement +++++++++++++++++++++++
- +31 ;;###
- +32 ;
- GETRECIP ;
- +1 ;* * * Define key below to identify recipients * * *
- +2 ;
- +3 SET CTR=0
- SET APCDKEY="APCDZMENU"
- +4 FOR
- SET CTR=$ORDER(^XUSEC(APCDKEY,CTR))
- IF 'CTR
- QUIT
- SET Y=CTR
- SET XMY(Y)=""
- +5 QUIT