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

GMRCDDX.m

Go to the documentation of this file.
  1. GMRCDDX ;SLC/DLT - AC cross-referenc logic for 123.5, field .01 ;11/3/97 11:21
  1. ;;3.0;CONSULT/REQUEST TRACKING;**1,6**;DEC 27, 1997
  1. SETAC ;Logic to set the heirarchy alphabetic cross reference on the menu item
  1. ;multiple based on the child-parent relationships in file 123.5
  1. ;The ACP cross-reference is used to find cross-reference entries that
  1. ;need to have the AC alphabetic cross-reference updated.
  1. ;The value in X will be used to create a new AC cross-reference.
  1. ; GMRCC=Child Service ien
  1. ; GMRCP=Parent Service ien
  1. ; GMRCE=Entry in Parent Sub-service multiple
  1. ;
  1. N GMRCC,GMRCP,GMRCE
  1. S GMRCC=DA,GMRCP=0
  1. F S GMRCP=$O(^GMR(123.5,"APC",GMRCC,GMRCP)) Q:'GMRCP D
  1. . S GMRCE=$O(^GMR(123.5,"APC",GMRCC,GMRCP,0)) Q:'GMRCE
  1. . S ^GMR(123.5,GMRCP,10,"AC",$E(X,1,63),GMRCE)=""
  1. . Q
  1. Q
  1. KILLAC ;Logic to kill the AC cross-reference entry with the name defined in
  1. ;the value of x.
  1. N GMRCC,GMRCP,GMRCE
  1. S GMRCC=DA,GMRCP=0
  1. F S GMRCP=$O(^GMR(123.5,"APC",GMRCC,GMRCP)) Q:'GMRCP D
  1. . S GMRCE=$O(^GMR(123.5,"APC",GMRCC,GMRCP,0)) Q:'GMRCE
  1. . K ^GMR(123.5,GMRCP,10,"AC",$E(X,1,63),GMRCE)
  1. . Q
  1. Q