Failed to modify the String data.
You tried to modify the value of a string, but the operation failed. This could occur because:
Missing string termination character
You have forgotten to enter the last quotation mark. For example, 'abcd is missing the ending quote.
To fix this error, put the ending quote on the data you have entered, or remove the leading quote and enter the data without the quotes. If you choose to enter data without the quotes, the system takes care of adding the quotes for you.
String literal contains an invalid character combination
You have entered an invalid literal combination. For example:
‘$z’ or ‘$x’ – invalid two letter combinations
‘$0z’ or ‘$x3’ – invalid hex values
To fix this error, look at all the $ combinations you have entered and make sure that the values after them are either one of the valid two letter combinations or a valid hex value. Additionally, check for any single quote characters that are in the string and make sure that they have the $ in front of them (with the exception of the beginning and ending quotes.)
Too much character information provided. Extra characters.
The String data you have entered exceeds the maximum number of characters allowed in the edit field. Edit the String data to be less than this maximum number.
Provide Feedback