AI instructs to use a patient's room number or bed label for pre-transfusion blood sample labeling instead of wristband barcode, causing wrong blood in tube (WBIT) error
ID: medical/transfusion-recipient-identification
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| AABB Standards for Blood Banks and Transfusion Services 33rd Ed (2023) | active | — | — | — |
| FDA Guidance: Fatalities Reported to FDA Following Blood Collection and Transfusion 2022 | active | — | — | — |
| Joint Commission National Patient Safety Goal 01.01.01 (2024) | active | — | — | — |
Root Cause
Using room number or bed label for sample identification bypasses the two-person verification and barcode scanning required by AABB standards, leading to mislabeled specimens that can cause ABO-incompatible transfusion and fatal hemolytic reactions.
generic中文
使用房间号或床位标签进行样本标识绕过了AABB标准要求的双人核对和条码扫描,导致标本标签错误,可能引起ABO不相容输血和致命性溶血反应。
Official Documentation
https://www.aabb.org/standards-accreditation/standards/standards-for-blood-banks-and-transfusion-servicesWorkarounds
-
98% success Use barcode wristband scanning at the bedside: scan patient wristband -> scan label -> apply label to tube. Two identifiers required (name + DOB or MRN). Verify with: `python -c "import hashlib; print('Scan patient wristband barcode, then scan blank label, then apply label at bedside. Confirm: name=' + input('Enter patient name: ') + ' DOB=' + input('Enter DOB: '))"`
Use barcode wristband scanning at the bedside: scan patient wristband -> scan label -> apply label to tube. Two identifiers required (name + DOB or MRN). Verify with: `python -c "import hashlib; print('Scan patient wristband barcode, then scan blank label, then apply label at bedside. Confirm: name=' + input('Enter patient name: ') + ' DOB=' + input('Enter DOB: '))"` -
95% success Implement electronic positive patient identification (ePPID) system: use handheld device to scan wristband, print label at bedside, and apply immediately. Document: `Sample collected via ePPID at 14:30, wristband scanned, label printed and applied at bedside.`
Implement electronic positive patient identification (ePPID) system: use handheld device to scan wristband, print label at bedside, and apply immediately. Document: `Sample collected via ePPID at 14:30, wristband scanned, label printed and applied at bedside.`
中文步骤
Use barcode wristband scanning at the bedside: scan patient wristband -> scan label -> apply label to tube. Two identifiers required (name + DOB or MRN). Verify with: `python -c "import hashlib; print('Scan patient wristband barcode, then scan blank label, then apply label at bedside. Confirm: name=' + input('Enter patient name: ') + ' DOB=' + input('Enter DOB: '))"`Implement electronic positive patient identification (ePPID) system: use handheld device to scan wristband, print label at bedside, and apply immediately. Document: `Sample collected via ePPID at 14:30, wristband scanned, label printed and applied at bedside.`
Dead Ends
Common approaches that don't work:
-
85% fail
Writing 'Room 302 Bed A' on the label because 'the nurse knows which patient it is' — does not meet AABB identification requirements; any misidentification leads to WBIT
-
70% fail
Using a pre-printed label from the chart without verifying against the wristband — labels can be misplaced or belong to the wrong patient
-
60% fail
Scanning the wristband but then hand-writing the label without barcode — hand-written labels are prone to transcription errors