Hi,
I have used List record component from the CDS (current Environment) in that I have filter criteria as mentioned below:
lastname eq 'O'Brien'
This error out with 404 error. Problem I see hear is the colon in the search string. I wanted to check how to handle such special characters in search string, because in my case the search string is dynamic, sometime I can get other special characters like / or -
I would like to check how can this scenario be handled?
Solved! Go to Solution.
You may need to encode the single quotation. Special Characters to be escaped. Try 'O%20%20Brian' or EncodeUriComponent(StringValue)
You may need to encode the single quotation. Special Characters to be escaped. Try 'O%20%20Brian' or EncodeUriComponent(StringValue)
Thanks EncodeUriComponent(StringValue) solved my issue.