-
Error: Only variable references are allowed in dynamic SOQL/SOSL.
Hi all, Got stuck in Batch classes not able to execute, getting system.queryexception - Only variable references are allowed in dynamic SOQL/SOSL.
global class SearchAndReplace implements Database.Batchable<sobject>{
global String Query;
global List<id>allObjIds ;
global SearchAndReplace(List<id>allObjectIds){
allObjIds=allObjectIds;
}
global Database.QueryLocator Start(Database.BatchableContext BC){
query='SELECT Id,Name FROM Sobject WHERE Id in:'+allObjIds;
return Database.getQueryLocator(query);
}
global void execute (Database.BatchableContext BC,List<Account>scope){
for(Account obj:scope){
obj.Name='Algoworks';
}
update scope;
}
global void finish (Database.BatchableContext BC){
}
}
Log In to reply.
Popular Salesforce Blogs
New and Comprehensive Salesforce Certification Course at JanBask Training
JanBask Training has announced the training and certification course in one of the topmost and market-leading CRM tool Salesforce. It is a well-known fact that…
The Journey Towards Predictive Lead Scoring With Salesforce Einstein
What is Lead Scoring? Sales and marketing departments have actively started counting on lead scoring because it helps them save money and time by enabling…
The New Salesforce Nonprofit Cloud: How To Upgrade?
You’ve decided to upgrade to the new Salesforce Nonprofit Cloud, designed to increase the impact of your organization by giving you modules to improve the…
Popular Salesforce Videos
All Things Telesales Podcast
Sales Director at Natterbox, Ian Moyse shares with us 3 Powerful Pillars of Servant Leadership - Yearning, Earning, Learning. Ian drops wisdom bombs left and right…
AMPscript Firstname Personalisation in Salesforce Marketing Cloud
Cameron Robert from Datarati demonstrates how to use Subscriber Data such as First Name or Preferred Name in your emails using AMPscript in Salesforce Marketing…
Rise & Shine with The Salesforce Women's Entrepreneur Group
The Salesforce Women’s Entrepreneur Group invites you to our first quarterly event of the year, Rise & Shine - Celebrating Women’s History Month. We are…