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

PRSPEAN.m

Go to the documentation of this file.
  1. PRSPEAN ;WOIFO/SAB - NEW EXTENDED ABSENCE ;10/20/2004
  1. ;;4.0;PAID;**93**;Sep 21, 1995;Build 7
  1. ;;Per VHA Directive 2004-038, this routine should not be modified.
  1. ; Enter New Extended Absence
  1. ;
  1. N DA,DDSFILE,DDSCHANG,DDSPARM,DIC,DIK,DIR,DIROUT,DIRUT,DO,DR,DTOUT,DUOUT
  1. N EAIEN,PRSEANEW,PRSFDT,PRSIEN,PRSX,X,Y
  1. ;
  1. ; determine Employee IEN
  1. S PRSIEN=$$PRSIEN^PRSPUT2(1)
  1. I 'PRSIEN G EXIT
  1. ;
  1. ; verify that user has electronic signature code
  1. I '$$ESIGC^PRSPUT2(1) G EXIT
  1. ;
  1. FDT ; ask new from date
  1. S DIR(0)="D^DT:"_$$FMADD^XLFDT(DT,365)_":EX",DIR("A")="FROM DATE"
  1. S DIR("?")="Enter the beginning date for a new period of extended absence"
  1. D ^DIR K DIR G:$D(DIRUT) EXIT
  1. S PRSFDT=$P(Y,U)
  1. ;
  1. ; If From Date = Today make sure ESR not already posted with RG time.
  1. I PRSFDT=DT,$$CHKRG^PRSPEAU(PRSIEN) D G FDT
  1. . W $C(7),!,"From Date can't be Today because RG time already posted on the ESR!"
  1. ;
  1. ; check for conflicts with from date
  1. S PRSX=$$CONFLICT^PRSPEAU(PRSIEN,PRSFDT)
  1. I PRSX'="" D RCON^PRSPEAU(PRSX) G FDT
  1. ;
  1. ; if date changed and new date not under memo then warn user
  1. I $$MIEN^PRSPUT1(PRSIEN,PRSFDT)'>0 W $C(7),!!,"Note: From Date is not covered by a memo." S DIR(0)="E" D ^DIR K DIK G:$D(DIRUT) EXIT
  1. ;
  1. ; create new entry in file
  1. K DO S DIC="^PRST(458.4,",DIC(0)="",X=PRSFDT
  1. S DIC("DR")="2////^S X=PRSIEN"
  1. D FILE^DICN
  1. I Y<0 W $C(7),!,"Unable to add an extended absence to the file." G EXIT
  1. S EAIEN=+Y
  1. ;
  1. ; lock record
  1. L +^PRST(458.4,EAIEN):2
  1. I '$T D G EXIT
  1. . W $C(7),!,"ERROR: Unable to lock the new entry!"
  1. . S DIK="^PRST(458.4,",DA=EAIEN D ^DIK K DIK
  1. ;
  1. ; call form to edit entry
  1. S PRSEANEW=1
  1. S DDSFILE=458.4,DA=EAIEN,DR="[PRSP EXT ABSENCE]",DDSPARM="C"
  1. D ^DDS
  1. ;
  1. ; delete new entry if not saved
  1. I $G(DDSCHANG)'=1 S DIK="^PRST(458.4,",DA=EAIEN D ^DIK K DIK
  1. ;
  1. ; unlock record
  1. L -^PRST(458.4,EAIEN)
  1. ;
  1. EXIT ; exit point
  1. Q
  1. ;
  1. ;PRSPEAN