You need to sign in to do that
Don't have an account?
Ajitkumar Pradhan 9
Select id,AccountId,Account_Company_Id__c,JobDiva_ID__c from Opportunity where JobDiva_ID__c!=null AND Stage==Open
What's wrong in this query?
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Please change ypur query as below: PLease mark as best answer if helped.
Regards,
Ramakant
All Answers
What Error you are getting ?
try this:
Select id,AccountId,Account_Company_Id__c,JobDiva_ID__c from Opportunity where JobDiva_ID__c!=null AND Stage='Open'
or
String stage = 'Open';
Select id,AccountId,Account_Company_Id__c,JobDiva_ID__c from Opportunity where JobDiva_ID__c!=null AND Stage=:stage
Hope this will help you :)
Thanks
Vinod
Please change ypur query as below: PLease mark as best answer if helped.
Regards,
Ramakant