I’m encountering an issue with single quotes in row-update expressions.
Typical Setup (Using single quotes):
- Ep Binding:
ReportParam.Name
- Expression:
'{MyDataview.UD03_Name_c}'
. - This expression fails with values like O’Brien
Work around (Using double quotes):
- Ep Binding:
ReportParam.Name
- Expression:
"{MyDataview.UD03_Name_c}"
- Doesn’t fail but displays O\'Brien instead of O’Brien
Does anyone know how to handle special characters like single quotes in Epicor’s row-update expression?
Thanks