- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 07:12 AM
Hi All,
I am getting "URLDecoder: Illegal hex characters in escape (%) pattern - Error at index 0 in: "jo"" error in flow action.
I am using SOQL query to fetch the names from salesforce Account table where name LIKE '%" + inputValue + "%'";
here inputValue we need to pass dynamically. but I am getting error
Pls, Can anyone help on this.
Thanks in Advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2023 05:06 AM
Hi @manasa32,
Can you give a try with below script
(function execute(inputs, outputs) {
var inputValue = inputs.parameter;
var query = "select Name, Id from Account where Name LIKE '%" + inputValue + "%'";
outputs.query = query;
})(inputs, outputs);
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2023 05:06 AM
Hi @manasa32,
Can you give a try with below script
(function execute(inputs, outputs) {
var inputValue = inputs.parameter;
var query = "select Name, Id from Account where Name LIKE '%" + inputValue + "%'";
outputs.query = query;
})(inputs, outputs);
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 09:03 AM