Carries country-specific product registration details including the country code, brand name, device family, generic name, catalogue identifier, product code, marketing basis, approval ID, and shelf life information. It appears in product experience report messages (P07/P08) to provide the regulatory and commercial context for the product in a specific jurisdiction.
from zato.hl7v2 import PDC
pdc = PDC()
pdc.country = 'USA'
pdc.brand_name = 'CardioMonitor X1'
pdc.marketing_basis = '510K'How to construct and work with real-world PDC segments.
Records a US-registered device with brand name, product code, and 510(k) marketing basis
from zato.hl7v2.v2_9 import PDC
from zato.hl7v2.v2_9 import CWE
pdc = PDC()
pdc.country = CWE(
identifier='USA',
text='United States',
name_of_coding_system='ISO3166'
)
pdc.brand_name = 'CardioMonitor X1'
pdc.device_family_name = (
'CardioMonitor'
)
pdc.catalogue_identifier = 'CAT-001'
pdc.product_code = CWE(
identifier='DYB',
text='ECG Monitor',
name_of_coding_system='FDA'
)
pdc.marketing_basis = '510K'
pdc.marketing_approval_id = (
'K240001'
)
pdc.date_first_marketed = '20220101'Captures a branded drug with generic name, shelf life, and marketing dates
from zato.hl7v2.v2_9 import PDC
from zato.hl7v2.v2_9 import CWE
pdc = PDC()
pdc.country = CWE(
identifier='USA',
text='United States',
name_of_coding_system='ISO3166'
)
pdc.brand_name = (
'Metformin HCl 500mg'
)
pdc.generic_name = CWE(
identifier='MET',
text='Metformin',
name_of_coding_system='NDC'
)
pdc.marketing_basis = 'PMA'
pdc.marketing_approval_id = (
'NDA-12345'
)
pdc.date_first_marketed = '20200601'Records a product that has been removed from market with first and last marketed dates
from zato.hl7v2.v2_9 import PDC
from zato.hl7v2.v2_9 import CWE
pdc = PDC()
pdc.country = CWE(
identifier='GBR',
text='United Kingdom',
name_of_coding_system='ISO3166'
)
pdc.brand_name = 'PulseOx Mini'
pdc.catalogue_identifier = 'PO-200'
pdc.product_code = CWE(
identifier='POX',
text='Pulse Oximeter',
name_of_coding_system='GMDN'
)
pdc.marketing_basis = '510K'
pdc.marketing_approval_id = (
'K190500'
)
pdc.date_first_marketed = '20190301'
pdc.date_last_marketed = '20240101'Step-by-step guides for working with HL7 v2 in Zato.
PDC carries country-specific product registration details including the country code, brand name, generic name, product code, marketing basis, approval ID, and shelf life information. It supports product experience reports by providing the regulatory and commercial context for a product in a specific jurisdiction.
The country field uses the CWE datatype with HL7 table 0675:
from zato.hl7v2.v2_9 import PDC, CWE
pdc = PDC()
pdc.country = CWE(
identifier='USA',
text='United States',
name_of_coding_system='ISO3166'
)The product_code field uses the CWE datatype with HL7 table 0677:
from zato.hl7v2.v2_9 import PDC, CWE
pdc = PDC()
pdc.product_code = CWE(
identifier='DYB',
text='ECG Monitor',
name_of_coding_system='FDA'
)The marketing_basis field uses HL7 table 0330 for the regulatory clearance type:
from zato.hl7v2.v2_9 import PDC
pdc = PDC()
# 510K = 510(k) clearance
pdc.marketing_basis = '510K'
# PMA = Pre-market approval
pdc.marketing_basis = 'PMA'Use date_first_marketed and date_last_marketed to track when the product entered and left the market:
from zato.hl7v2.v2_9 import PDC
pdc = PDC()
pdc.date_first_marketed = '20200601'
pdc.date_last_marketed = '20240101'Zato connects to any system that speaks HL7v2 over MLLP or FHIR over REST. This includes Epic, Cerner, Meditech, Allscripts, and other EHR platforms.
Yes, Zato has built-in MLLP support for sending and receiving HL7v2 messages. MLLP channels handle the framing protocol automatically.
Zato supports HL7 v2.9, which is backward compatible with earlier versions including v2.3, v2.5, and v2.7. Standard segments and datatypes are available as typed Python classes.
Yes. Zato handles both HL7v2 and FHIR natively, so you can parse v2 messages and build FHIR resources with IG-specific extensions in the same service. Typed Python classes are available for both protocols, including extensions from US Core, UK Core, Da Vinci, and other Implementation Guides.
Complete list of fields in the PDC segment, HL7 v2.9.
| # | Python name | Datatype | Usage | Repeatable | Table |
|---|---|---|---|---|---|
| 1 | manufacturer_distributor | XON | Required | Yes | - |
| 2 | country | CWE | Required | No | HL70675 |
| 3 | brand_name | ST | Required | No | - |
| 4 | device_family_name | ST | Optional | No | - |
| 5 | generic_name | CWE | Optional | No | HL70676 |
| 6 | model_identifier | ST | Optional | Yes | - |
| 7 | catalogue_identifier | ST | Optional | No | - |
| 8 | other_identifier | ST | Optional | Yes | - |
| 9 | product_code | CWE | Optional | No | HL70677 |
| 10 | marketing_basis | ID | Optional | No | HL70330 |
| 11 | marketing_approval_id | ST | Optional | No | - |
| 12 | labeled_shelf_life | CQ | Optional | No | - |
| 13 | expected_shelf_life | CQ | Optional | No | - |
| 14 | date_first_marketed | DTM | Optional | No | - |
| 15 | date_last_marketed | DTM | Optional | No | - |
Get started with Zato and connect your systems in minutes.