[613] | 1 | PXRMEXMH ; SLC/PKR - Clinical Reminder Exchange main help. ;05/14/2001
|
---|
| 2 | ;;2.0;CLINICAL REMINDERS;;Feb 04, 2005
|
---|
| 3 | ;======================================================================
|
---|
| 4 | LOAD ;If necessary load the help text into the ^TMP array.
|
---|
| 5 | ;Check if the help text has already been loaded.
|
---|
| 6 | I $D(^TMP("PXRMEXMH",$J,"VALMCNT")) D Q
|
---|
| 7 | . S VALMCNT=^TMP("PXRMEXMH",$J,"VALMCNT")
|
---|
| 8 | ;
|
---|
| 9 | N DONE,IND,TEXT
|
---|
| 10 | S DONE=0
|
---|
| 11 | S VALMCNT=0
|
---|
| 12 | F IND=1:1 Q:DONE D
|
---|
| 13 | . S TEXT=$P($T(TEXT+IND),";",3)
|
---|
| 14 | . I TEXT="**End Text**" S DONE=1 Q
|
---|
| 15 | . S VALMCNT=VALMCNT+1
|
---|
| 16 | . S ^TMP("PXRMEXMH",$J,VALMCNT,0)=TEXT
|
---|
| 17 | S ^TMP("PXRMEXMH",$J,"VALMCNT")=VALMCNT
|
---|
| 18 | Q
|
---|
| 19 | ;
|
---|
| 20 | ;======================================================================
|
---|
| 21 | TEXT ;Help text
|
---|
| 22 | ;;The following actions are available:
|
---|
| 23 | ;;
|
---|
| 24 | ;;CFE Create Exchange File Entry
|
---|
| 25 | ;; Create an entry in the Exchange File; this is also called
|
---|
| 26 | ;; a packed reminder definition. When you select this action
|
---|
| 27 | ;; you will be prompted for a reminder definition. All the
|
---|
| 28 | ;; components used in the definition will be "packed" up and
|
---|
| 29 | ;; included in the packed definition.
|
---|
| 30 | ;;
|
---|
| 31 | ;;CHF Create Host File
|
---|
| 32 | ;; Create a host file containing selected entries from the
|
---|
| 33 | ;; Exchange File.
|
---|
| 34 | ;;
|
---|
| 35 | ;;CMM Create MailMan Message
|
---|
| 36 | ;; Create a MailMan message containing selected entries from
|
---|
| 37 | ;; the Exchange File.
|
---|
| 38 | ;;
|
---|
| 39 | ;;DFE Delete Exchange File Entry
|
---|
| 40 | ;; Delete selected entries from the Exchange File.
|
---|
| 41 | ;;
|
---|
| 42 | ;;IFE Install Exchange File Entry
|
---|
| 43 | ;; Install selected Exchange File entries. Once an entry has
|
---|
| 44 | ;; been selected you will have the option of installing all
|
---|
| 45 | ;; the components in the packed reminder or selected
|
---|
| 46 | ;; components.
|
---|
| 47 | ;;
|
---|
| 48 | ;;IH Installation History
|
---|
| 49 | ;; Show the installation history of selected Exchange File
|
---|
| 50 | ;; entries.
|
---|
| 51 | ;;
|
---|
| 52 | ;;LHF Load Host File
|
---|
| 53 | ;; Load a host file containing packed reminder definitions
|
---|
| 54 | ;; into the Exchange File.
|
---|
| 55 | ;;
|
---|
| 56 | ;;LMM Load MailMan Message
|
---|
| 57 | ;; Load a MailMan message containing packed reminders
|
---|
| 58 | ;; into the Exchange File.
|
---|
| 59 | ;;
|
---|
| 60 | ;;LR List Reminder Definitions
|
---|
| 61 | ;; Display a list of all the reminders that are defined in the
|
---|
| 62 | ;; current UCI.
|
---|
| 63 | ;;
|
---|
| 64 | ;;RI Reminder Definition Inquiry
|
---|
| 65 | ;; Display the reminder definition for the selected reminder.
|
---|
| 66 | ;;
|
---|
| 67 | ;;QU Quit
|
---|
| 68 | ;;
|
---|
| 69 | ;;**End Text**
|
---|
| 70 | Q
|
---|
| 71 | ;
|
---|