09-28-2023 02:53 PM
When i am passing pipeline parameters 'time_column' and 'object_name' i am getting Error. Same with Salesforce read Snap
Solved! Go to Solution.
09-28-2023 10:10 PM
Hi Roger,
Please click and highlight the equals sign below 'SOQL Query'* in order to use the pipeline parameters in SOQL query. We need to make sure we enable the '=' to use expression language. Also please remove semicolon at the end or add it within quotes. (_object_name+';')
Thanks !
09-29-2023 12:53 AM
The query should looks like below:
"Select max("+_time_column+") maxtime from "+_object_name+""
But as @manichandana_ch mentioned please make sure you enabled the "=" button.
BR,
Spiro Taleski
09-28-2023 10:10 PM
Hi Roger,
Please click and highlight the equals sign below 'SOQL Query'* in order to use the pipeline parameters in SOQL query. We need to make sure we enable the '=' to use expression language. Also please remove semicolon at the end or add it within quotes. (_object_name+';')
Thanks !
09-29-2023 12:53 AM
The query should looks like below:
"Select max("+_time_column+") maxtime from "+_object_name+""
But as @manichandana_ch mentioned please make sure you enabled the "=" button.
BR,
Spiro Taleski
09-29-2023 07:49 AM
Thanks @SpiroTaleski and @manichandana_ch . It worked