CASS Stage not validating a few valid address records?

Infosphere's Quality Product

Moderators: chulett, rschirm

Post Reply
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

CASS Stage not validating a few valid address records?

Post by jaksani »

Hi,

CASS stage not validating a few records.

For Example:
Address Validation Failed:
965 SELLS AVE SW APT 3104 -> Address
ATLANTA GA 30310-1314 -> Area

Address validation Success:
900 REAS FORD RD -> Address
EARLYSVILLE VA 22936-2318 -> Area

Observation in Failure case:
1)Zip4_CASS column has null in Failure case though input record has valid value.
I think this might be the reason for not validating?

If you have any idea please let me know the reason for not validating mentioned record.
Thanks & Regards,
Venkat Jaksani
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You have a 9-digit zip in the failed case, so you should have a value in the Zip4_CASS field.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
rjdickson
Participant
Posts: 378
Joined: Mon Jun 16, 2003 5:28 am
Location: Chicago, USA
Contact:

Post by rjdickson »

The output ZIP4 field would be null if the record failed certification.

Using the information from one of your other posts, what are the codes returned from certification? (The DPV and validation codes). Also, what are the returned delivery address lines?
Regards,
Robert
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

Post by jaksani »

The codes returned from the certification are :

ADDRVAL_MatchFlag_Cass -> NULL
ADDRVAL_DPVCommFloag_CASS -> NULL
ADDRVAL_DPVCode1_CASS -> 'AA'
ADDRVAL_DPVCode2_CASS-> NULL
ADDRVAL_DPVCode3_CASS -> NULL

DeliveryAddressLine1_CASS -> 965 SELLS AVE SW APT 3104
Thanks & Regards,
Venkat Jaksani
rjdickson
Participant
Posts: 378
Joined: Mon Jun 16, 2003 5:28 am
Location: Chicago, USA
Contact:

Post by rjdickson »

Having a MtchFlag of null and DPVCod1 of AA is unusual. What were the outputs (like ZIP5_CASS, DeliveryPoint_CASS, CITY_CASS, etc)?
Regards,
Robert
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

Post by jaksani »

ZIP5_CASS:30310
DeliveryPoint_CASS:NULL
DeliveryPointChkDigit_CASS:NULL
CarrierRoute_CASS:C019
City_CASS:ATLANTA
State_CASS:GA
Thanks & Regards,
Venkat Jaksani
rjdickson
Participant
Posts: 378
Joined: Mon Jun 16, 2003 5:28 am
Location: Chicago, USA
Contact:

Post by rjdickson »

Having a CarrierRoute implies that the record certified - and that is confirmed by the 'AA'.

Are you doing any mapping/transformation after the USAC stage, or does the stage go directly to an output file?
Regards,
Robert
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

Post by jaksani »

Yes, doing some transformations.
I am just replacing NULL values in dpvmatchflag and dpvcodes with '' and this is just to prepare Returncode and Return Message for the CASS output.
Thanks & Regards,
Venkat Jaksani
rjdickson
Participant
Posts: 378
Joined: Mon Jun 16, 2003 5:28 am
Location: Chicago, USA
Contact:

Post by rjdickson »

And what is the derivation on the MatchFlag column?
Regards,
Robert
rjdickson
Participant
Posts: 378
Joined: Mon Jun 16, 2003 5:28 am
Location: Chicago, USA
Contact:

Post by rjdickson »

And what is the derivation on the MatchFlag column?
Regards,
Robert
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

Post by jaksani »

if (IsNotNull(DSLink1671.DPVMatchFlag_CASS)) Then DSLink1671.DPVMatchFlag_CASS Else ""

The above statement is used for derivation of MatchFlag.
Thanks & Regards,
Venkat Jaksani
jaksani
Participant
Posts: 48
Joined: Tue Mar 01, 2011 12:26 am
Location: Hyderabad

Post by jaksani »

if (IsNotNull(DSLink1671.DPVMatchFlag_CASS)) Then DSLink1671.DPVMatchFlag_CASS Else ""

The above statement is used for derivation of MatchFlag.
Thanks & Regards,
Venkat Jaksani
Post Reply