Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: ORLSTVIZ

ORLSTVIZ.m

Go to the documentation of this file.
  1. ORLSTVIZ ; SLC/WAT - Editing Team List Visibility ;9/14/06 14:00
  1. ;;3.0;ORDER ENTRY/RESULTS REPORTING;**243**;Dec 17, 1997;Build 242
  1. ;
  1. ;PROMPT THE USER FOR A LIST OR LISTS FOR WHICH TO SET VISIBILITY
  1. ;SHOW THE POSSIBLE OPTIONS FOR VISIBILITY:
  1. ; '0' = NOBODY
  1. ; '1' = ALLUSERS
  1. ;DIC,DIR,DIE - FileMan call
  1. ; DA - input variable to ^DIE - internal entry number of the file entry to be edited
  1. ; DR - input variable to ^DIE - as used here it's the field number in file stuffed with user-chosen VISBILITY value
  1. ; DTOUT - output from ^DIC-only defined when DIC times out
  1. ; DUOUT - output from ^DIC-only defined when user enters carat
  1. ; DIRUT - output from ^DIR-defined when user enters carat, presses Return/Enter, or times out
  1. ; Y - Returned from FM call-returns "-1" is lookup was unsuccessful
  1. ; Y(0) - Returned from ^DIC-hold external value of chosen VISIBILITY by user
  1. ; IEN - IEN of list from 100.21
  1. ; VIS - VISIBILITY value from 100.21
  1. ; CNT - counter/array index position
  1. ; LIST - NAME value from 100.21
  1. ; VIS - VISIBILITY value from 100.21
  1. N DIC,DIR,DIE,DA,DR,DTOUT,DUOUT,DIRUT,Y,LIST,VIS,CNT,IEN,VAL
  1. K ^TMP("ORLST",$J)
  1. S DIC="^OR(100.21,",DIC(0)="AEQZ",CNT=0
  1. W !,"You may set the VISIBILITY for one or more lists."
  1. W !,"Please enter your selection(s) below."
  1. LKUP F D ^DIC Q:$D(DTOUT)!($D(DUOUT))!(Y=-1) I Y>0 S ^TMP("ORLST",$J,CNT)=$P(Y,U,1) S ^TMP("ORLST",$J,CNT,CNT+1)=$P(Y,U,2) S ^TMP("ORLST",$J,CNT,CNT+1,CNT+2)=$$GET1^DIQ(100.21,^TMP("ORLST",$J,0),11) S CNT=CNT+1
  1. Q:$D(DTOUT)!($D(DUOUT))
  1. Q:'$D(^TMP("ORLST",$J,0))
  1. ;*********For each selected list(s), display current NAME and VISIBILITY*******
  1. W !!,"You have chosen to update the following list(s):"
  1. S (IEN,LIST,VIS)=""
  1. F S IEN=$O(^TMP("ORLST",$J,IEN)) Q:IEN="" D
  1. . S LIST=$O(^TMP("ORLST",$J,IEN,LIST)) Q:LIST="" W !?5,^TMP("ORLST",$J,IEN,LIST) D
  1. . .S VIS=$O(^TMP("ORLST",$J,IEN,LIST,VIS)) Q:VIS="" W ?37,"Current value: "_^TMP("ORLST",$J,IEN,LIST,VIS)
  1. W !!,""
  1. ;
  1. READER S DIR(0)="100.21,11",DIR("B")="ALLUSERS"
  1. D ^DIR Q:$D(DIRUT)
  1. ;
  1. S VAL=Y(0) ;capture user-selected VISIBILTY value
  1. EDIT S IEN="",DIE=DIC,DR="11///^S X=VAL" ; 11 is VISIBILITY field in 100.21
  1. F S IEN=$O(^TMP("ORLST",$J,IEN)) Q:IEN="" D
  1. .S DA=^TMP("ORLST",$J,IEN)
  1. .D ^DIE
  1. K ^TMP("ORLST",$J)
  1. W @IOF
  1. W !!,"Update Complete"
  1. Q