I have created a mapping inside Informatica cloud where source is salesforce and I am fetching data from salesforce using SOQL query. I have the following where condition written in SOQL Filter condition.
abc='test' AND YearField__c= (System.Today().year())
When I try to run the task, it gives me the error 'Bind variables only allowed in Apex code'. How do I use the current year function in SOQL query?
Thanks