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

FBAAUVC.m

Go to the documentation of this file.
  1. FBAAUVC ;WOIFO/SAB-UPDATE VENDOR CODES ;11/27/2000
  1. ;;3.5;FEE BASIS;**24**;JAN 30, 1995
  1. ;This routine may be tasked (or directly called) from the patch
  1. ;FB*3.5*24 post install routine.
  1. Q
  1. ;
  1. ENQ ; Tasked Entry Point
  1. N FBERR
  1. D UPDPART
  1. D UPDSPEC
  1. Q
  1. ;
  1. UPDPART ;Update Selected Participation Code(s)
  1. ;May also be directly called from FBXIP24
  1. N FBCODE,FBDA,FBFDA,FBI,FBNAME,FBX,X,Y
  1. K FBERR
  1. ;
  1. ; update Part Codes
  1. K FBFDA
  1. ; loop thru Part Codes
  1. F FBI=1:1 S FBX=$P($T(PART+FBI),";;",2) Q:FBX="END" D
  1. . S FBCODE=$P(FBX,U)
  1. . S FBNAME=$P(FBX,U,2)
  1. . Q:FBCODE=""
  1. . ;
  1. . ; locate Part Code in file
  1. . S FBDA=$$FIND1^DIC(161.81,"","X",FBCODE,"C")
  1. . ;
  1. . ; if PART CODE found then check and if necessary add to update array
  1. . I FBDA D
  1. . . I $$GET1^DIQ(161.81,FBDA_",",.01)=FBNAME Q
  1. . . S FBFDA(161.81,FBDA_",",.01)=FBNAME
  1. . ;
  1. . ; if Part Code not found then add it
  1. . I 'FBDA D
  1. . . N DA,DD,DIC,DINUM,DLAYGO,DO,X
  1. . . S DIC="^FBAA(161.81,",DIC(0)="L",DLAYGO=161.81
  1. . . S X=FBNAME Q:X=""
  1. . . S DIC("DR")="1////^S X=FBCODE"
  1. . . I +FBCODE,'$D(^FBAA(161.81,+FBCODE,0)) S DINUM=+FBCODE
  1. . . D FILE^DICN
  1. . . I Y<0 S FBERR(FBCODE)=""
  1. ;
  1. ; actually update the found Part Codes
  1. I $D(FBFDA) D FILE^DIE("","FBFDA")
  1. ;
  1. Q
  1. ;
  1. PART ;austin code^name for Participation Code(s)
  1. ;;15^DOCTOR OF CHIROPRACTIC
  1. ;;END
  1. ;
  1. UPDSPEC ;Update Selected Specialty Code(s)
  1. ;May also be directly called from FBXIP24
  1. N FBCODE,FBDA,FBFDA,FBI,FBNAME,FBX,X,Y
  1. K FBERR
  1. ;
  1. ; update Specialty Code(s)
  1. K FBFDA
  1. ; loop thru Specialties
  1. F FBI=1:1 S FBX=$P($T(SPEC+FBI),";;",2) Q:FBX="END" D
  1. . S FBCODE=$P(FBX,U)
  1. . S FBNAME=$P(FBX,U,2)
  1. . Q:FBCODE=""
  1. . ;
  1. . ; locate Specialty Code in file
  1. . S FBDA=$$FIND1^DIC(161.6,"","X",FBCODE,"C")
  1. . ;
  1. . ; if Spec Code found then check and if necessary add to update array
  1. . I FBDA D
  1. . . I $$GET1^DIQ(161.6,FBDA_",",.01)=FBNAME Q
  1. . . S FBFDA(161.6,FBDA_",",.01)=FBNAME
  1. . ;
  1. . ; if Specialty Code not found then add it
  1. . I 'FBDA D
  1. . . N DA,DD,DIC,DINUM,DLAYGO,DO,X
  1. . . S DIC="^FBAA(161.6,",DIC(0)="L",DLAYGO=161.6
  1. . . S X=FBNAME Q:X=""
  1. . . S DIC("DR")="1////^S X=FBCODE"
  1. . . D FILE^DICN
  1. . . I Y<0 S FBERR(FBCODE)=""
  1. ;
  1. ; actually update the found Specialty Codes
  1. I $D(FBFDA) D FILE^DIE("","FBFDA")
  1. ;
  1. Q
  1. ;
  1. SPEC ;;austin code^name for Specialty Code(s)
  1. ;;53^CHIROPRACTIC
  1. ;;END
  1. ;
  1. ;FBAAUVC