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

ORWPFSS2.m

Go to the documentation of this file.
  1. ORWPFSS2 ;SLC-GDU CPRS HL7 PROCESSING FOR RAD PRE-CERT;[04/15/05 09:19]; 4/28/05 15:34
  1. ;;3.0;ORDER ENTRY/RESULTS REPORTING;**228**;Dec 17, 1997
  1. ;Routine to process the HL7 message from the Ancillary Radiology
  1. ;package for the Pre-Certification Account Reference to be associated
  1. ;with the radiology order record in the Order File, file # 100.
  1. ;External Variables, set by the HL7 processing
  1. ; ORIFN - 1st piece of 3rd piece of ORC message segment, Order IEN
  1. ; ORMSG - The HL7 message being processed
  1. ; PV1 - PV1 segment number in the HL7 message
  1. ;Internal Variables
  1. ; ORAR - Order PFSS Account Reference
  1. ; ORFDA - Fileman Data Array
  1. ; OREM - Error Message
  1. ; ORIEN - Order Internal Entry Number
  1. ; ORRPAR - Order Radiology Pre-Certification Account Reference
  1. ; ORUPDT - Order Update Indicator
  1. ; ORPFSS - PFSS Active Indicator
  1. ;DBIA References
  1. ; $$GET1^DIQ - DBIA 2056
  1. ; PFSSACTV^ORWPFSS - Internal to CPRS PFSS
  1. ; $$ACCTREF^ORWPFSS1 - Internal to CPRS PFSS
  1. PRECERT ;Process Radiology HL7 message for precertification PFSS Account
  1. ;Reference.
  1. N ORAR,ORFDA,OREM,ORIEN,ORRPAR,ORUPDT,ORPFSS
  1. ;If PFSS inactive quit
  1. D PFSSACTV^ORWPFSS(.ORPFSS) I ORPFSS=0 Q
  1. ;If PV1 is null quit
  1. I PV1="" Q
  1. ;If pre-cert not present in HL7 PV1 seg quit
  1. S ORRPAR=$P(@ORMSG@(PV1),"|",51)
  1. I ORRPAR="" Q
  1. ;If PFSS AR already on file with order quit
  1. S ORIEN=+ORIFN
  1. S ORAR=$$GET1^DIQ(100,ORIEN,97)
  1. I ORAR'="" Q
  1. ;Update order with pre-cert PFSS AR
  1. S ORUPDT=$$ACCTREF^ORWPFSS1(ORIEN,ORRPAR)
  1. I ORUPDT=1 Q
  1. ;Return error message is error happens during update
  1. S ORERR=$P(ORUPDT,U,2)
  1. Q