The CASS Engine can take up to 50 characters, so the truncation of the address field occurs during the validation process.
My recommendation will be to perform a one-time change in the Properties section of AccuZIP6, which increases the original size of the address and oaddress fields to 100 characters. After validation, you’ll run a command that will copy the original address into the address field, replacing the truncated data.
Pull down the File menu to Properties.
Click on the Fields Tab.
Click on Default Field Widths and Attributes.
Change the width of address to 100. Do the same to oaddress.
Click OK. Click Yes. Click OK to get out of the Properties window.
Open your list in AccuZIP6, and assign your fields as usual.
In the Validate Records window, check the Preserve Original Address box.
After validation is run, you can run a command that will copy the data from oaddress back into address:
After you import your list into AccuZIP6, pull down the Edit menu to Command. Run the following command:
Code: Select all
Replace All address with ALLT(oaddress)FOR LEN(ALLT(oaddress))>50
Close the command window after running it, and your addresses that were longer than 50 characters in length will be returned to their original condition.