Index
Finding Closest Segment To Errors
When an error is generated while validating EDI data it may be helpful to find a nearby segment that could help developers get more information about the error. For example, many HIPAA developers want to know the actual claim (CLM Segment) where errors were generated. They can then use the claim id to find out which claim to fix.
The ClosestSegmentToError property can be used in this scenario. When that property is set EDIValidator will find the closest segment to that error and assign it to the error’s ClosestSegment property.
Example
Now when an error occurs the closest CLM segment will be assigned to the ClosestSegment property on the error or warning. This will enable developers to know what claim the error occurred in.
Additionally if there are multiple segments that could be close to the error and they only differ by element data the additional properties on the ClosestSegmentToError object can be used to find the closest segment given the element index and value
Example
validator.ClosestSegmentToError.CompareValue = “Some Value“;