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

DICFIX1.m

Go to the documentation of this file.
  1. DICFIX1 ;SEA/TOAD,SF/TKW-FileMan: Finder, Search Compound Indexes (cont.) ;15MAY2011
  1. ;;22.2;VA FileMan;;Jan 05, 2016;Build 42
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. ;;Submitted to OSEHRA 5 January 2015 by the VISTA Expertise Network.
  1. ;;Based on Medsphere Systems Corporation's MSC FileMan 1051.
  1. ;;Licensed under the terms of the Apache License, Version 2.0.
  1. ;
  1. ;
  1. NXTNAM(DIVAL,DIPART,DINDEX,DISKIP,DIDONE) ;
  1. ; limited comma piece lookup, skip nonmatching names in index
  1. N DIUTF8 D
  1. .N X,Y S Y=$C(126),X=$G(^DD("OS",^DD("OS"),"HIGHESTCHAR")) X:X]"" X S DIUTF8=Y
  1. I $P(DIVAL,",")=DIPART S DIVAL=DIPART_","_DIUTF8,DISKIP=1 Q ;UTH/SMH
  1. N DIPREC,DIPOSTC,DIPPOSTC
  1. S DIPREC=$P(DIVAL,","),DIPOSTC=$P(DIVAL,",",2)
  1. S DIPPOSTC=DINDEX(DISUB,DITRXNO,"c")
  1. I $$PREFIX(DIPOSTC,DIPPOSTC) Q
  1. I $$PREFIX(DIPPOSTC,DIPOSTC) Q
  1. D SKIP(.DISKIP,.DIVAL,DIPREC,DIPOSTC,DIPART,DIPPOSTC,.DINDEX)
  1. Q
  1. ;
  1. PREFIX(DISTRING,DIPREFIX) ;
  1. Q $E(DISTRING,1,$L(DIPREFIX))=DIPREFIX
  1. ;
  1. SKIP(DISKIP,DIVAL,DIPREC,DIPOSTC,DIPART,DIPPOSTC,DINDEX) ;
  1. ; Skip forward within index based on limited comma piecing
  1. I DIPPOSTC]DIPOSTC D Q
  1. . ; Current first name before starting first name, skip to starting first name
  1. . S DIVAL=DIPREC_","_DIPPOSTC
  1. . I '$D(@DINDEX(DISUB,"ROOT")@(DIVAL)) S DISKIP=1
  1. ; Else, skip the rest of the first names within current last name.
  1. S DIVAL=DIPREC_","_DIUTF8,DISKIP=1 Q ;UTH/SMH
  1. ;
  1. ;