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

DG696PST.m

Go to the documentation of this file.
  1. DG696PST ;BAY/JAT;cleanup of combat vet field on file 46.1
  1. ;;5.3;Registration;**696*;Aug 13,1993
  1. ;
  1. ; This is a post-init routine for DG*5.3*696
  1. ; The purpose is to rewrite each entry that has a value in
  1. ; field .08 of file #46.1 by replacing "Y" with "1" and "N" with 0.
  1. ;
  1. EN ;
  1. D BMES^XPDUTL("Updating file #46.1")
  1. N DGIEN,DGSET,FDATA,DIERR
  1. S DGIEN=0
  1. F S DGIEN=$O(^DGICD9(46.1,DGIEN)) Q:'DGIEN D
  1. .Q:$P($G(^DGICD9(46.1,DGIEN,0)),U,8)=""
  1. .S DGSET=""
  1. .I $P(^DGICD9(46.1,DGIEN,0),U,8)="Y" S DGSET=1
  1. .I $P(^DGICD9(46.1,DGIEN,0),U,8)="N" S DGSET=0
  1. .S FDATA(46.1,DGIEN_",",.08)=DGSET
  1. .D FILE^DIE("","FDATA","DIERR")
  1. K FDATA,DIERR
  1. Q