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

HLMA0.m

Go to the documentation of this file.
  1. HLMA0 ;AISC/SAW-Message Administration Module (Cont'd) ;7/17/97 17:30
  1. ;;1.6;HEALTH LEVEL SEVEN;**34,109**;Oct 13, 1995
  1. RECEIVE(HLLD0,HLLD1) ;Entry point to receive an external message
  1. ;
  1. ;This is a subroutine call with parameter passing. There are no
  1. ;output parameters returned by this call.
  1. ;
  1. ;Required Input Parameter
  1. ; HLLD0 = Internal entry number where message is stored in Logical Link
  1. ; file or XM if message is stored in MailMan
  1. ;Optional Input Parameter (Required if HLLD0 does not equal XM)
  1. ; HLLD1 = Internal entry number of IN QUEUE multiple entry in Logical
  1. ; Link file
  1. ;
  1. ;Check for required parameter
  1. I $G(HLLD0)']"" Q
  1. I HLLD0'="XM",'$G(HLLD1) Q
  1. N HLRESLT
  1. ;Get message ID and Message Text IEN for message being received
  1. D CREATE^HLTF(.HLMID,.HLMTIEN,.HLDT,.HLDT1)
  1. K HLDT,HLDT1
  1. ;Call Transaction Processor
  1. D PROCESS^HLTP0(HLMTIEN,HLLD0,$S($G(HLLD1):HLLD1,1:""),.HLRESLT)
  1. ;Update Status to Successfully Completed or Error During Transmission
  1. D STATUS^HLTF0(HLMTIEN,$S(HLRESLT:4,1:3),$S(HLRESLT:+HLRESLT,1:""),$S(HLRESLT:$P(HLRESLT,"^",2),1:""),,$S($G(HLERR("SKIP_EVENT"))=1:1,1:0))
  1. EXIT K HLMTIEN,HLRESLT
  1. Q