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

VAQCON.m

Go to the documentation of this file.
  1. VAQCON ;ALB/JRP - MESSAGE CONSTRUCTION;14-APR-93
  1. ;;1.5;PATIENT DATA EXCHANGE;;NOV 17, 1993
  1. XMIT(TRANARR,ROOT,MESSNUM,ARRAY,OFFSET) ;BUILD MESSAGE FOR TRANSACTION
  1. ;INPUT : TRANARR - Array whose subscripts are pointers to
  1. ; VAQ - TRANSACTION file (full global reference)
  1. ; ROOT - Location of Extraction Arrays (full global reference)
  1. ; MESSNUM - Message number to place transmisison into
  1. ; (if 0, transmission will be placed in ARRAY)
  1. ; ARRAY - Array to store transmission in (full global reference)
  1. ; OFFSET - Where to begin placing information (defaults to 0)
  1. ;OUTPUT : N - Number of lines in transmission
  1. ; -1^Error_Text - Error
  1. ;NOTES : Transactions pointed to by TRANARR will be placed in the
  1. ; same transmission and therefore should have the same domain
  1. ; as their destination.
  1. ; : If MESSNUM=0, then the transmission will be placed into
  1. ; ARRAY(LineNumber)=Line_of_info
  1. ; If MESSNUM>0 then the transmission will be placed into
  1. ; ^XMB(3.9,MESSNUM,2,LineNumber,0)=Line_of_info
  1. ; : The first subscript in ROOT must be a pointer to the
  1. ; transaction. The second subscript in ROOT must be the
  1. ; segment abbreviation. This is required to identify the
  1. ; segments for each transaction contained in a DATA or DISPLAY
  1. ; block. ( ROOT(TransactionPointer,SegmentAbbreviation) )
  1. ;
  1. ;CHECK INPUT
  1. Q:($G(TRANARR)="") "-1^Did not pass reference to array of transaction pointers"
  1. S ROOT=$G(ROOT)
  1. S MESSNUM=+$G(MESSNUM)
  1. I (('MESSNUM)&($G(ARRAY)="")) Q "-1^Did not pass message number or reference to output array"
  1. I (MESSNUM) Q:('$D(^XMB(3.9,MESSNUM))) "-1^Valid message number not passed"
  1. S OFFSET=+$G(OFFSET)
  1. ;DECLARE VARIABLES
  1. N TMP,X,LINE,TRANPTR,Y,TMPROOT
  1. S LINE=OFFSET
  1. ;START PDX TRANSMISSION
  1. S TMP="$TRANSMIT"
  1. S:('MESSNUM) @ARRAY@(LINE)=TMP
  1. S:(MESSNUM) X=$$ADDLINE^VAQCON1(TMP,MESSNUM,LINE)
  1. S LINE=LINE+1
  1. ;LOOP THROUGH EACH TRANSACTION
  1. S TRANPTR=""
  1. F S TRANPTR=$O(@TRANARR@(TRANPTR)) Q:('TRANPTR) D Q:(TMP<0)
  1. .;PLACE TRANSACTION POINTER INTO ROOT
  1. .S TMP=$P(ROOT,"(",1)
  1. .S X=$P(ROOT,"(",2)
  1. .S Y=$P(X,")",1)
  1. .S:(Y="") TMPROOT=TMP_"("_TRANPTR_")"
  1. .S:(Y'="") TMPROOT=TMP_"("_Y_","_TRANPTR_")"
  1. .S:(ROOT="") TMPROOT=""
  1. .;PUT IN MESSAGE
  1. .S TMP=$$MESSAGE^VAQCON0(TRANPTR,TMPROOT,MESSNUM,ARRAY,LINE)
  1. .Q:(TMP<0)
  1. .S LINE=LINE+TMP
  1. Q:(TMP<0) TMP
  1. ;END PDX TRANSMISSION
  1. S TMP="$$TRANSMIT"
  1. S:('MESSNUM) @ARRAY@(LINE)=TMP
  1. S:(MESSNUM) X=$$ADDLINE^VAQCON1(TMP,MESSNUM,LINE)
  1. S LINE=LINE+1
  1. Q (LINE-OFFSET)