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

HLOAPI4.m

Go to the documentation of this file.
  1. HLOAPI4 ;ALB/CJM-HL7 - Developer API's for sending & receiving messages(continued) ;02/04/2004
  1. ;;1.6;HEALTH LEVEL SEVEN;**131**;Oct 13, 1995;Build 10
  1. ;
  1. SETTS(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is a timestamp in FM format into the segment in HL7
  1. ;format. The degree of precision may be optionally specified. The
  1. ;inserted value will include the timezone if the input included the time.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required)to be set into the segment
  1. ; VALUE("PRECISION") (optional) If included, VALUE must be passed by
  1. ; reference. Allowed values are:
  1. ; "S" - seconds (default value)
  1. ; "M" - minutes
  1. ; "H" - hours
  1. ; "D" - days
  1. ; FIELD - the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating.
  1. ;Output:
  1. ; SEG array
  1. ;
  1. ;Example:
  1. ; D SETTS^HLOAPI4(.SEG,$$NOW^XLFDT,1) will place the current date/time into the segment in the 1st field,1st occurence. The timezone is included.
  1. ;
  1. ;
  1. N TIME
  1. Q:'$G(FIELD)
  1. Q:'$G(VALUE)
  1. S:'$G(REP) REP=1
  1. S:'$G(COMP) COMP=1
  1. S TIME=$$FMTHL7^XLFDT(VALUE)
  1. I $D(VALUE("PRECISION")) D
  1. .N TZ
  1. .S TZ=""
  1. .I TIME["+" S TZ="+"_$P(TIME,"+",2)
  1. .E I TIME["-" S TZ="-"_$P(TIME,"-",2)
  1. .I VALUE("PRECISION")="D" D
  1. ..S TIME=$E(TIME,1,8)_TZ
  1. .E I VALUE("PRECISION")="H" D
  1. ..S TIME=$E($$LJ^XLFSTR(+TIME,10,0),1,10)_TZ
  1. .E I VALUE("PRECISION")="M" D
  1. ..S TIME=$E($$LJ^XLFSTR(+TIME,12,0),1,12)_TZ
  1. .E I VALUE("PRECISION")="S" D
  1. ..S TIME=$E($$LJ^XLFSTR(+TIME,14,0),1,14)_TZ
  1. S SEG(FIELD+1,REP,COMP,1)=TIME
  1. Q
  1. ;
  1. SETDT(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is a date in FM format into the segment in HL7 format. The degree of precision may be optionally specified.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required)the date to be set into the segment
  1. ; VALUE("PRECISION") (optional) If included, VALUE must be passed by
  1. ; reference. Allowed values are:
  1. ; "D" - day (default value)
  1. ; "L" - month
  1. ; "Y" - year
  1. ; FIELD - the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. ;
  1. ;Example:
  1. ; D SETDT^HLOAPI4(.SEG,$$TODAY^XLFDT,1) will place the current date into segment in the 1st field,1st occurence.
  1. ;
  1. ;
  1. N TIME
  1. Q:'$G(FIELD)
  1. S:'$G(REP) REP=1
  1. S:'$G(COMP) COMP=1
  1. S TIME=$$FMTHL7^XLFDT(VALUE)
  1. I $D(VALUE("PRECISION")) D
  1. .I VALUE("PRECISION")="Y" D
  1. ..S TIME=$E(TIME,1,4)
  1. .E I VALUE("PRECISION")="L" D
  1. ..S TIME=$E(TIME,1,6)
  1. .E I VALUE("PRECISION")="D" D
  1. ..S TIME=$E(TIME,1,8)
  1. S SEG(FIELD+1,REP,COMP,1)=TIME
  1. Q
  1. ;
  1. SETCE(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is an HL7 Coded Element data type (HL7 Section Reference 2.9.3) into the segment in the specified field.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required, pass-by-reference) These subscripts may be passed:
  1. ; "ID" - the identifier
  1. ; "TEXT" -
  1. ; "SYSTEM" - name of the code system
  1. ; "ALTERNATE ID" - alternate identifier
  1. ; "ALTERNATE TEXT"
  1. ; "ALTERNATE SYSTEM" - name of the alternate coding system
  1. ; FIELD (required) the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating fields, this parameter is not necessary.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. ;
  1. N SUB,VAR
  1. Q:'$G(FIELD)
  1. S:'$G(REP) REP=1
  1. I '$G(COMP) D
  1. .S VAR="COMP",SUB=1
  1. E D
  1. .S VAR="SUB"
  1. S @VAR=1,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("ID"))
  1. S @VAR=2,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("TEXT"))
  1. S @VAR=3,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("SYSTEM"))
  1. S @VAR=4,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("ALTERNATE ID"))
  1. S @VAR=5,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("ALTERNATE TEXT"))
  1. S @VAR=6,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("ALTERNATE SYSTEM"))
  1. Q
  1. ;
  1. SETHD(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is an HL7 Hierarchic Designator data type (HL7 Section Reference 2.9.21) into the segment in the specified field.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required, pass-by-reference) These subscripts may be passed:
  1. ; "NAMESPACE ID"
  1. ; "UNIVERSAL ID"
  1. ; "UNIVERSAL ID TYPE"
  1. ; FIELD (required) the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating fields, this parameter is not necessary.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. ;
  1. N SUB,VAR
  1. Q:'$G(FIELD)
  1. S:'$G(REP) REP=1
  1. I '$G(COMP) D
  1. .S VAR="COMP",SUB=1
  1. E D
  1. .S VAR="SUB"
  1. S @VAR=1,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("NAMESPACE ID"))
  1. S @VAR=2,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("UNIVERSAL ID"))
  1. S @VAR=3,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("UNIVERSAL ID TYPE"))
  1. Q
  1. ;
  1. SETCNE(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is an HL7 Coded With No Exceptions data type (HL7 Section Reference 2.9.8) into the segment in the specified field.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required, pass-by-reference) These subscripts may be passed:
  1. ; "ID" - the identifier
  1. ; "TEXT" -
  1. ; "SYSTEM" - name of the code system
  1. ; "ALTERNATE ID" - alternate identifier
  1. ; "ALTERNATE TEXT"
  1. ; "ALTERNATE SYSTEM" - name of the alternate coding system
  1. ; "SYSTEM VERSION" - version ID of the coding system
  1. ; "ALTERNATE SYSTEM VERSION" - version ID of the alternate coding system
  1. ; "ORIGINAL TEXT"
  1. ; FIELD (required) the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating fields, this parameter is not necessary.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. D SETCODE^HLOAPI2(.SEG,.VALUE,.FIELD,.COMP,.REP)
  1. Q
  1. ;
  1. SETCWE(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets a value that is an HL7 Coded With Exceptions data type (HL7 Section Reference 2.9.11) into the segment in the specified field.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required, pass-by-reference) These subscripts may be passed:
  1. ; "ID" - the identifier
  1. ; "TEXT" -
  1. ; "SYSTEM" - name of the code system
  1. ; "ALTERNATE ID" - alternate identifier
  1. ; "ALTERNATE TEXT"
  1. ; "ALTERNATE SYSTEM" - name of the alternate coding system
  1. ; "SYSTEM VERSION" - version ID of the coding system
  1. ; "ALTERNATE SYSTEM VERSION" - version ID of the alternate coding system
  1. ; "ORIGINAL TEXT"
  1. ; FIELD (required) the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating fields, this parameter is not necessary.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. D SETCODE^HLOAPI2(.SEG,.VALUE,.FIELD,.COMP,.REP)
  1. Q
  1. ;
  1. SETAD(SEG,VALUE,FIELD,COMP,REP) ;
  1. ;Sets an AD data type (Address, HL7 Section Reference 2.9.1) into the segment in the specified field. It can also be used to set the 1st 8 components of the XAD (Extended Address) data type.
  1. ;IF the component is specified, then the data type is 'demoted' to a component, and its components are 'demoted' to subcomponents.
  1. ;
  1. ;Input:
  1. ; SEG - (required, pass by reference) The array where the seg is being built.
  1. ; VALUE (required, pass-by-reference) These subscripts may be passed:
  1. ; "STREET1" -street address
  1. ; "STREET2" - other designation
  1. ; "CITY"
  1. ; "STATE" - state or province
  1. ; "ZIP" - zip or postal code
  1. ; "COUNTRY"
  1. ; "TYPE" - address type
  1. ; "OTHER" - other geographic designation
  1. ; FIELD (required) the sequence # of the field
  1. ; COMP (optional) If specified, the data type is 'demoted' to a component value.
  1. ; REP - the occurrence# (optional, defaults to 1) For a non-repeating fields, this parameter is not necessary.
  1. ;Output:
  1. ; SEG - segment that is being built
  1. ;
  1. N SUB,VAR
  1. Q:'$G(FIELD)
  1. S:'$G(REP) REP=1
  1. I '$G(COMP) D
  1. .S VAR="COMP",SUB=1
  1. E D
  1. .S VAR="SUB"
  1. S @VAR=1,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("STREET1"))
  1. S @VAR=2,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("STREET2"))
  1. S @VAR=3,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("CITY"))
  1. S @VAR=4,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("STATE"))
  1. S @VAR=5,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("ZIP"))
  1. S @VAR=6,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("COUNTRY"))
  1. S @VAR=7,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("TYPE"))
  1. S @VAR=8,SEG(FIELD+1,REP,COMP,SUB)=$G(VALUE("OTHER"))
  1. Q