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

RGPVREJ.m

Go to the documentation of this file.
  1. RGPVREJ ;BIR/PTD-REMOTE PRIMARY VIEW REJECT (PATIENT) ;10/8/06
  1. ;;1.0;CLINICAL INFO RESOURCE NETWORK;**44,47,53**;30 Apr 99;Build 2
  1. ;
  1. ;Reference to ^XWB2HL7 supported by IA #3144
  1. ;Reference to ^XWBDRPC supported by IA #3149
  1. ;
  1. REJ ;Option only available for Primary View Reject exceptions
  1. ;From within the Exception Handler, for selection, DATA should be defined.
  1. N RGBDT,RGICN,RGSITE,PTEN,PELV
  1. I DATA="" W !,"No Exception Data available." Q
  1. S PTEN=$P(DATA,"^",10) ;IEN IN 991.1
  1. S PELV=$P(DATA,"^",11) ;IEN IN 991.12
  1. I $P($G(^RGHL7(991.1,PTEN,1,PELV,0)),"^",3)'=234 S VALMSG="Action is ONLY for PRIMARY VIEW REJECT exceptions!" Q
  1. I $P($G(^RGHL7(991.1,PTEN,1,PELV,0)),"^",5)=1 S VALMSG="Exception has been PROCESSED; no longer active." Q
  1. S RGSITE=$P($$SITE^VASITE(),"^",3) I RGSITE="" W !,"No Site Data defined." Q
  1. S RGICN=$P(DATA,"^",6) I RGICN="" W !,"No ICN defined." Q
  1. S RGBDT=$P(DATA,"^",3) I RGBDT="" W !,"No Exception Date defined." Q
  1. S X=RGBDT D ^%DT S RGBDT=Y ;convert Exception Date from external format to internal
  1. ;
  1. S VALMBCK="",QUIT=0
  1. D FULL^VALM1
  1. SEND ;Send a remote query to the MPI for Primary View Reject report
  1. N RETURN,RESULT,RGEDT,SNTDT
  1. S RGEDT=$$DT^XLFDT ;End date for report internal format
  1. NOQ ;No previous query exists for this ICN/exception date
  1. I '$D(^XTMP("RGPVREJ"_RGICN,RGBDT)) D RPC G DISP
  1. ;
  1. OLDQ ;Query already sent for this ICN/ exception date
  1. I $D(^XTMP("RGPVREJ"_RGICN,RGBDT)) D
  1. .S SNTDT=$$FMTE^XLFDT($P(^XTMP("RGPVREJ"_RGICN,RGBDT),"^",2))
  1. .W !?3,"A query was last sent for this ICN/Exception Date on "_SNTDT
  1. .S X=$P(SNTDT,"@") D ^%DT S SNTDT=Y ;convert to internal, strip time
  1. .;Has data returned for existing query?
  1. .S RETURN(0)=$P(^XTMP("RGPVREJ"_RGICN,RGBDT),"^")
  1. .D RPCCHK^XWB2HL7(.RESULT,RETURN(0)) I +RESULT(0)=1 D Q ;Data has returned
  1. ..I RGEDT=SNTDT D ;query was sent 'today', want to use that one?
  1. ...S DIR("A")=" Do you wish to review that existing query data now? ",DIR(0)="YA"
  1. ...S DIR("?")=" Enter YES to review the existing query; NO to send a new query"
  1. ...S DIR("B")="YES" D ^DIR K DIR I $D(DIRUT) S QUIT=1 Q ;up-arrowed out
  1. ...I Y>0 K DIR Q ;yes, use existing query
  1. ...I Y=0 D Q ;no, don't use existing, send new query
  1. ....K ^XTMP("RGPVREJ"_RGICN,RGBDT)
  1. ....D RPC
  1. ....K DIR
  1. ....;
  1. ..I RGEDT'=SNTDT D ;query was NOT sent 'today', data may be old, send new query
  1. ...W !?3,"Previous Query data may be obsolete."
  1. ...K ^XTMP("RGPVREJ"_RGICN,RGBDT)
  1. ...D RPC
  1. .;Data for existing query has NOT returned **47
  1. .I +RESULT(0)'=1 D FAIL ;**53
  1. ;
  1. DISP ;Display Primary View Reject Data
  1. I QUIT'=1 D EN^RGEX07(RGICN,RGBDT)
  1. EXIT ;Kill variables and quit
  1. K CNT,DIR,DIRUT,QUIT,X,Y
  1. Q
  1. ;
  1. RPC ;Send the Remote Query
  1. W !?3,"Sending a Remote Query to the Master Patient Index."
  1. W !?3,"This will take some time; please be patient."
  1. D EN1^XWB2HL7(.RETURN,"200M","RG PRIMARY VIEW REJECT",1,RGSITE,RGICN,RGBDT,RGEDT) I RETURN(0)'="" D Q
  1. .S ^XTMP("RGPVREJ"_RGICN,0)=$$FMADD^XLFDT(DT,2)_"^"_DT_"^"_"PRIMARY VIEW REJECT"
  1. .S ^XTMP("RGPVREJ"_RGICN,RGBDT)=RETURN(0)_"^"_$$NOW^XLFDT
  1. .;Has data returned for this query?
  1. .S CNT=0 F S CNT=CNT+1 D RPCCHK^XWB2HL7(.RESULT,RETURN(0)) Q:RESULT(0) H 2 I CNT>15 Q ;result(0)=status of handle
  1. .I +RESULT(0)=1 W !?3,"Query data has returned from the MPI and is available for review."
  1. .I +RESULT(0)'=1 D FAIL ;**53
  1. W !!?3,"Problem with Query: ",RETURN(0)_"^"_$G(RETURN(1))
  1. S QUIT=1
  1. D PAUSE^VALM1
  1. Q
  1. ;
  1. FAIL ;Status of RPC call - unsuccessful after 30 seconds ;**53
  1. W !?3,"Your query request has NOT returned data from the MPI after trying for"
  1. W !?3,"30 seconds. This could be due to network issues. Please try again later."
  1. K ^XTMP("RGPVREJ"_RGICN,RGBDT)
  1. S QUIT=1
  1. D PAUSE^VALM1
  1. Q
  1. ;