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

PSXBPSUT.m

Go to the documentation of this file.
  1. PSXBPSUT ;BIR/MFR - BPS (ECME) Utilities ;13 Mar 2002 10:31 AM
  1. ;;2.0;CMOP;**48,63,65**;11 Apr 97;Build 31
  1. ;Reference to ^PS(52.5, supported by DBIA #1978
  1. ;Reference to ^PSOSULB1 supported by DBIA #2478
  1. ;
  1. XMIT(REC) ; Checks if the prescription will be transmitted to CMOP or not
  1. ; Input: REC - Pointer to SUSPENSE file (#52.5)
  1. ; Output: XMIT - 0 - NO / 1 - YES
  1. N VADM,DFN,RX,PSXOK
  1. I '$D(^PS(52.5,REC,0)) Q 0
  1. I $P(^PS(52.5,REC,0),"^",7)="" Q 0
  1. S RX=$P($G(^PS(52.5,REC,0)),"^",1) I RX="" Q 0
  1. S DFN=$$GET1^DIQ(52,RX,2,"I") D DEM^VADPT I $G(VADM(6))'="" Q 0
  1. I ($P(^PS(52.5,REC,0),"^",3)'=DFN) Q 0
  1. S PSXOK=0 D CHKDATA^PSXMISC1 I PSXOK Q 0
  1. Q 1
  1. ;
  1. EXCEL() ; - Returns whether to capture data for Excel report.
  1. ; Output: EXCEL = 1 - YES (capture data) / 0 - NO (DO NOT capture data)
  1. ;
  1. N EXCEL,DIR,DIRUT,DTOUT,DUOUT,DIROUT,Y
  1. ;
  1. S DIR(0)="Y",DIR("B")="NO",DIR("T")=DTIME W !
  1. S DIR("A")="Do you want to capture report data for an Excel document"
  1. S DIR("?")="^D HEXC^PSXBPSUT"
  1. D ^DIR K DIR I $D(DIRUT)!$D(DTOUT)!$D(DUOUT)!$D(DIROUT) Q "^"
  1. K DIROUT,DTOUT,DUOUT,DIRUT
  1. S EXCEL=0 I Y S EXCEL=1
  1. ;
  1. ;Display Excel display message
  1. I EXCEL=1 D EXMSG
  1. ;
  1. Q EXCEL
  1. ;
  1. HEXC ; - 'Do you want to capture data...' prompt
  1. W !!," Enter: 'Y' - To capture detail report data to transfer"
  1. W !," to an Excel document"
  1. W !," '<CR>' - To skip this option"
  1. W !," '^' - To quit this option"
  1. Q
  1. ;
  1. ;Display the message about capturing to an Excel file format
  1. ;
  1. EXMSG ;
  1. W !!?5,"Before continuing, please set up your terminal to capture the"
  1. W !?5,"detail report data. On some terminals, this can be done by"
  1. W !?5,"clicking on the 'Tools' menu above, then click on 'Capture"
  1. W !?5,"Incoming Data' to save to Desktop. This report may take a"
  1. W !?5,"while to run."
  1. W !!?5,"Note: To avoid undesired wrapping of the data saved to the"
  1. W !?5," file, please enter '0;256;999' at the 'DEVICE:' prompt.",!
  1. Q
  1. ;