Member IDs (PC107) and Subscriber ID (PC108) on MedImpact pharmacy claims where paid date (PC017) >= 2023-01-01 are incorrectly formatted. The MedImpact ID length should be 8 characters. The IDs present on the pharmacy claims in this date range are 10 characters - the last 2 characters were incorrectly appended.
Workaround: Use the first 8 bytes of the member ID for these claims
substring(PC107,1,8)
substring(PC108,1,8)
This issue will be resolved in the next APCD release.
Add Comment