Issue
Character limit

Solution
To chop the field characters off at a number of characters in a control, use the following javascript in a calculation control

[field] = [field].substr(0,11);

This will limit the number of characters to 11, change as needed.