NEWFree ROI Calculators — quantify what prior auth and siloed data are costing your organization.Prior Auth ROI Siloed Data ROI
HL7 v2Segment9 min read

HL7 TXA Segment: Transcription Document Header

The TXA segment carries the header metadata for a transcribed or dictated clinical document: what kind of document it is, who authored and authenticated it, when it was originated and transcribed, its unique number, and where it sits in its lifecycle. Where the document body lives in repeating OBX segments, TXA is the cover sheet that describes it — the metadata an MDM message routes and files on.

Purpose

TXA describes a single clinical document instance: document type, content presentation, the providers who originated, transcribed, and authenticated it, the activity/origination/transcription timestamps, the unique and parent document numbers, the associated order numbers, and the completion, confidentiality, availability, and storage statuses. It is the structured header that lets a receiver classify, version, and store the document the OBX segments carry.

Used in

TXA appears in MDM (document management messages), which announce new documents, status changes, replacements, and addenda. The document content itself follows in OBX segments, with optional NTE notes. See MDM.

Field-by-field reference

Source: the Vorro HL7 segment database (extracted from the official v2-to-FHIR IG). R = required (cardinality min ≥ 1). Repeat = field may repeat. Length is not carried by the FHIR source and is shown as .

SeqNameData TypeLengthReqRepeatTable #Description
TXA-1Set ID- TXASIRSequence number when multiple TXAs appear; usually 1.
TXA-2Document TypeCWERHL70270Kind of document (e.g. discharge summary, consult).
TXA-3Document Content PresentationIDOHL70191How the content is encoded or presented.
TXA-4Activity Date/TimeDTMOWhen the documented activity took place.
TXA-5Primary Activity Provider Code/NameXCNOYProvider(s) responsible for the documented activity.
TXA-6Origination Date/TimeDTMOWhen the document was first originated.
TXA-7Transcription Date/TimeDTMOWhen the document was transcribed.
TXA-8Edit Date/TimeDTMOYWhen the document was edited.
TXA-9Originator Code/NameXCNOYAuthor(s) who originated the document.
TXA-10Assigned Document AuthenticatorXCNOYProvider(s) assigned to authenticate the document.
TXA-11Transcriptionist Code/NameXCNOYPerson who transcribed the document.
TXA-12Unique Document NumberEIRThe unique identifier for this document.
TXA-13Parent Document NumberEIOIdentifier of a parent/original document.
TXA-14Placer Order NumberEIOYOrder number(s) that placed the document request.
TXA-15Filler Order NumberEIOFiller-assigned order number.
TXA-16Unique Document File NameSTODocument file name used for storage/retrieval.
TXA-17Document Completion StatusIDRHL70271Lifecycle status (dictated, transcribed, authenticated).
TXA-18Document Confidentiality StatusIDOHL70272Confidentiality/sensitivity level of the document.
TXA-19Document Availability StatusIDOHL70273Whether the document is available for use.
TXA-20Document Storage StatusIDOHL70275Where the document is stored (active, archived, purged).
TXA-21Document Change ReasonSTOReason the document was changed.
TXA-22Authentication Person, Time Stamp (set)PPNOYWho authenticated the document and when.
TXA-23Distributed Copies (Code and Name of Recipient(s) )XCNOYRecipient(s) who received copies.
TXA-24Folder AssignmentCWEOYFolder(s) the document is filed under.
TXA-25Document TitleSTOYHuman-readable title of the document.
TXA-26Agreed Due Date/TimeDTMODate the document is due.
TXA-27Creating FacilityHDOFacility that created the document.
TXA-28Creating SpecialtyCWEOSpecialty that created the document.

Most-used fields

  • TXA-2 Document Type classifies the document and is what receivers route and file on; it is required and maps to DocumentReference.type.
  • TXA-12 Unique Document Number is the identifier systems match on to version, replace, or append to an existing document.
  • TXA-17 Document Completion Status drives lifecycle logic — dictated vs transcribed vs authenticated decides whether a document is final.
  • TXA-9 Originator and TXA-10 Authenticator name the author and the signer, the providers most downstream consumers care about.
  • TXA-6 Origination Date/Time and TXA-7 Transcription Date/Time bound when the document came into being.

Version differences (2.3 to 2.8.2)

  • 2.3/2.4: the core TXA header (type, numbers, dates, completion status) is established early and stays stable.
  • 2.5: coded fields shift from CE toward CWE (e.g. TXA-2 Document Type, TXA-24 Folder Assignment).
  • 2.7+: TXA-23 Distributed Copies, TXA-24 Folder Assignment, TXA-25 Document Title, TXA-26 Agreed Due Date/Time, TXA-27 Creating Facility, and TXA-28 Creating Specialty added.
  • Receivers built for 2.3 ignore the trailing fields they do not recognize.

Common mistakes

  • Sending a document without TXA-12 Unique Document Number, leaving the receiver unable to version or replace it.
  • Misusing TXA-17 Document Completion Status so a draft is filed as final, or an addendum is treated as an original.
  • Treating TXA-13 Parent Document Number as optional on a replacement/addendum, breaking the document chain.
  • Reading only the first repetition of TXA-9/TXA-10/TXA-11 when several authors or authenticators are listed.

Examples

Minimal valid TXA (required fields only):

TXA|1|DS^Discharge Summary^HL70270|||||||||DOC10001^MERCYGEN||||AU

Fully-populated TXA (authenticated discharge summary):

TXA|1|DS^Discharge Summary^HL70270|TX|20260609100000|9001^WELBY^MARCUS^^^^MD|20260609101500|20260609103000||9001^WELBY^MARCUS^^^^MD|9002^REYES^LINA^^^^MD|T500^KEActive|DOC10001^MERCYGEN|||DOC10001.txt|AU|U|AV|AC||9002^REYES^LINA^^^^MD&20260609110000|||Discharge Summary

Annotated breakdown of the fully-populated example (selected fields):

TXA                              ← segment ID
1                                ← TXA-1  Set ID
DS^Discharge Summary^HL70270     ← TXA-2  Document Type (required)
TX                               ← TXA-3  Document Content Presentation
20260609100000                  ← TXA-4  Activity Date/Time
9001^WELBY^MARCUS^^^^MD          ← TXA-5  Primary Activity Provider
20260609101500                  ← TXA-6  Origination Date/Time
20260609103000                  ← TXA-7  Transcription Date/Time
9001^WELBY^MARCUS^^^^MD          ← TXA-9  Originator (author)
9002^REYES^LINA^^^^MD            ← TXA-10 Assigned Document Authenticator
DOC10001^MERCYGEN                ← TXA-12 Unique Document Number (required)
AU                               ← TXA-17 Document Completion Status (required, Authenticated)

In-context inside an MDM^T02 (original document notification):

MSH|^~&|TRANSCRIPTION|MERCYGEN|EHR|MERCYGEN|20260609103000||MDM^T02^MDM_T02|MSG201|P|2.5.1
EVN|T02|20260609103000
PID|1||MR12345^^^MERCYGEN^MR||DOE^JOHN^Q||19800101|M
PV1|1|I|3WEST^301^A||||9001^WELBY^MARCUS^^^^MD|||MED|||||||||V0001|||||||||||||||||||||||20260605120000
TXA|1|DS^Discharge Summary^HL70270|TX|20260609100000|9001^WELBY^MARCUS^^^^MD|20260609101500|20260609103000||9001^WELBY^MARCUS^^^^MD|9002^REYES^LINA^^^^MD||DOC10001^MERCYGEN|||DOC10001.txt|AU
OBX|1|TX|11488-4^Consultation note^LN||Patient admitted for observation; discharged in stable condition.||||||F

In-context inside an MDM^T02 carrying a multi-line note (OBX repeats):

MSH|^~&|TRANSCRIPTION|MERCYGEN|EHR|MERCYGEN|20260609104500||MDM^T02^MDM_T02|MSG202|P|2.5.1
EVN|T02|20260609104500
PID|1||MR12345^^^MERCYGEN^MR||DOE^JOHN^Q||19800101|M
TXA|1|CN^Consult Note^HL70270|TX|20260609090000|9003^OKAFOR^ADA^^^^MD|20260609093000|20260609094000||9003^OKAFOR^ADA^^^^MD|||DOC10002^MERCYGEN|||DOC10002.txt|IP
OBX|1|TX|11488-4^Consultation note^LN||Cardiology consult requested for new-onset atrial fibrillation.||||||P
OBX|2|TX|11488-4^Consultation note^LN||Recommend rate control and anticoagulation; follow-up in one week.||||||P

FHIR mapping

Primary target resource: DocumentReference. TXA also drives a Provenance resource that records the document's authoring and authenticating agents and the recorded timestamp. Official ConceptMaps: DocumentReference, Provenance.

Key DocumentReference mappings:

TXA fieldFHIR target (DocumentReference)
(constant)status = current
TXA-2 Document Typetype (CodeableConcept)
TXA-3 Document Content Presentationcontent.attachment.contentType
TXA-6 Origination Date/Timedate (+ extension[1] date extension)
TXA-9 Originator Code/Nameauthor (Practitioner)
TXA-10 Assigned Document Authenticatorauthenticator (Practitioner)
TXA-12 Unique Document NumbermasterIdentifier
TXA-16 Unique Document File Nameidentifier[1]
TXA-17 Document Completion StatusdocStatus
TXA-18 Document Confidentiality StatussecurityLabel (vocab: DocumentConfidentialityStatus)
TXA-19 Document Availability Statusstatus (+ status.extension[1] alternate-codes)
TXA-25 Document Titledescription

Provenance target: TXA contributes recorded (instant), and two agent entries (agent[1], agent[2]) each with who as a Practitioner reference and a role coded IRCP from the v3 ParticipationType system; TXA also maps to reason.text.

Fields without a published DocumentReference or Provenance mapping (TXA-1, TXA-4, TXA-5, TXA-7, TXA-8, TXA-11, TXA-13, TXA-14, TXA-15, TXA-20, TXA-21, TXA-22, TXA-23, TXA-24, TXA-26, TXA-27, TXA-28) are header/workflow details not represented on either resource.

Engine considerations

  • Required in practice: TXA-1, TXA-2, TXA-12, and TXA-17 are standard-required; real interfaces also depend on TXA-9/TXA-10 for author/signer and TXA-13 to chain replacements and addenda.
  • Use TXA-17 Document Completion Status to gate filing — only AU (authenticated) documents should be treated as final by many downstream systems.
  • Preserve repeating provider fields (TXA-5/9/10/11/23) and repeating numbers (TXA-14) as arrays.
  • Sequence document versions by TXA-12/TXA-13 and the origination/edit timestamps rather than delivery order.

How Vorro parses and produces TXA

Vorro indexes TXA-12 as the document key and reads TXA-13 to maintain the parent/child document chain across replacements and addenda. TXA-17 gates whether a document is treated as final, repeating author and authenticator fields are preserved, and on the FHIR side Vorro emits DocumentReference with type, docStatus, masterIdentifier, and author/authenticator per the official ConceptMap, plus a Provenance resource carrying the agents and recorded time.

  • OBX — the observation segments that carry the document body.
  • NTE — notes and comments that accompany the document.
  • MDM messages — where TXA announces documents and their status changes.

Sources

← Back to HL7 v2 Guide

Ready to Integrate This Into Your Workflow?

Talk to a Vorro expert about implementing HL7 v2 in your specific environment.

Browse HL7 v2 Guides
HL7 TXA Segment: Transcription Document Header | Vorro Academy | Vorro