SOQL is the Salesforce Object Query Language.
0
votes
1answer
9 views
Is there a way to group by the date portion of a datetime field in SOQL
select day_only(createdDate) createdonDate,
count(createdDate) numCreated
from account
group by day_only(createdDate)
order by day_only(createdDate) desc
this soql return result ...
0
votes
0answers
25 views
Salesforce - Correct way of login/logout java API
I have an java application that interacts with Salesforce. Application processes a batch of requests (~100 requests). Before starting processing of each batch, it calls login() to Salesforce but it ...
0
votes
1answer
25 views
Combination of SOQL Statements String with Boolean Attributes
Do you have an idea on how can i combine the following SOQL statements into just one i tried several options and by creating the two entries i was able to get it to work.. i'm fairly new to APEX ...
1
vote
1answer
36 views
Show Opportunity related Contacts in Custom Object Field
I have the next issue.
I have a custom object called 'Application', and I have this requirement:
"Show all Contacts related to an Application. Create a field on Application object, must be read ...
0
votes
0answers
44 views
The LIKE operator in SOQL does not escape special character
Hi below is my SOQL qoery
SELECT ID,Name, ...
0
votes
1answer
81 views
Updating contact email in user trigger in Salesforce
I have a trigger on a user object that is triggered on user updating and updates the contact fields (user linked to this contact), such as first name, last name and email. First and last name are ...
0
votes
1answer
185 views
Salesforce Apex - Populating an object from SOQL query
I have a simple SOQL query that returns information relating to a Contact and CampaignMember. I'm attempting to populate a custom object with the results of the SOQL query. However I get the following ...
0
votes
2answers
104 views
Salesforce SOQL query return all values including NULL
I have a simple SOQL query:
select Count(ID), CampaignId, Campaign.Name
from CampaignMember
where CampaignId in ('701U0000000MVoQ', '701U0000000MLFR', '701U0000000MVoL')
group by CampaignId, ...
1
vote
1answer
75 views
SOQL query where row number is in range
How do I create a query in SOQL like:
SELECT Id FROM User WHERE rownum > 101 AND rownum < 200
I am trying to do pagination where I load the first 100, then if you click "Load more" I can query ...
0
votes
2answers
77 views
SalesForce SOQL MALFORMED_QUERY
Why is this SOQL query returning "*MALFORMED_QUERY: unexpected token: and"*:
Select id FROM account where id = '0012000000I7MkRAAV' or id = '0012000000I7MkRAAV' and id = '0012000000I7MkRAAV'
...
0
votes
2answers
59 views
Trouble with SalesForce Query Results - PHP Toolkit
I am trying to query my SalesForce database using the PHP API. I am successfully retrieving results, however they are largely useless. When doing a print_r on the results, I receive these results from ...
0
votes
1answer
198 views
Execution Confusion in Batch class Apex
i am calling a batch class instance and after completing batch class i am calling two other batch class instance. finish() method code for first batch class is
public void ...
0
votes
0answers
41 views
SOQL Query not bringing back parent with no comments
Due to the way this is structured I can't bring back groups with no comments/feeds in them, unfortunately trying to invert this brings up multiple errors as CollaborationGroup does not understand the ...
0
votes
0answers
27 views
how to fetch reports based on folder name using SOQL
Am new to SFDC, i struck with a small issue that is i wanna fetch reports based on folder name by using SOQL. can any one help me.
thank in advance.
0
votes
0answers
30 views
SF SOQL: combining 2 queries
I'm trying to combine 2 SF queries SOQL:
SELECT Count(Id) cases, AVG(Age__c) age, Owner.Name, Owner.Id FROM Case GROUP BY Owner.Id,Owner.Name
and:
SELECT Count(Id) old FROM Case WHERE Age__c >= 7 ...
0
votes
1answer
57 views
How to Know in Apex Report is related to which object
i am trying to access the Report objects in apex but getting limited fields my apex source code is
public Class MyController{
public List<Report> getReports(){
List<Report> rep1 = new ...
0
votes
1answer
497 views
getting Value of a field by its Name in apex salesforce
in my visualforce page i have some campaign object first user select an object then there is a multi picklist. in this picklist there is Label for all the fields user selects some fields then i have ...
1
vote
2answers
208 views
Maximum Size of List in APEX Salesforce
I have created a DataBase.Batchable class in which I am inserting a custom object named Event__c
public class BatchCreateGCalendars implements Database.Batchable<SObject>, Database.Stateful, ...
0
votes
1answer
62 views
Returning all Salesforce contacts associated with an account via query from third-party site
I'm using Survey Gizmo and I want to pull in all contact emails associated with an account.
This query works, but it only pulls in the first contact and I need them all:
SELECT Id,Contact.Email FROM ...
0
votes
0answers
34 views
Salesforce SOQL INVALID_QUERY_LOCATOR exception
When i try to pull many contacts using SOAP API i get NVALID_QUERY_LOCATOR exception.
INVALID_QUERY_LOCATOR exception occurre when any query having sub query takes a long time (more than 15 Mins) to ...
0
votes
1answer
109 views
FATAL_ERROR|System.DmlException: Delete failed. First exception on row 0
i have a batch class with code
public class BatchDeleteEvents implements Database.Batchable, Database.Stateful, Database.AllowsCallouts {
private String query;
private String pageToken ;
private ...
0
votes
1answer
93 views
Is there a way to get the case Age using salesforce SOQL?
I'm using the SF Rest API to run some SOQL queries.. running a query on the Case object, trying to get its current Age (= the amount of days passed since the case was opened).
Is there a way to get ...
1
vote
2answers
322 views
first error: INVALID_CROSS_REFERENCE_KEY, Assigned To ID: owner cannot be blank: [OwnerId]
i am writing a test for my controller for that i have to insert event in test database
my test method is
static TestMethod void Test1_TestInsertWithValue()
{Meeting_Master__c master=new ...
0
votes
1answer
106 views
Getting List of Open Events in salesforce
i have to retrieve list of Open Events in salesforce
i am using following method for getting list of open Events
public List<OpenActivity> getActivity1(){
Meeting_Master__c mmm= [SELECT ...
0
votes
1answer
196 views
Getting list of open Activities in salesforce
i have to retrieve list of OpenActivities related to a custom object Activities are enabled for custom object .for getting list i am using query like this
public List<OpenActivity> ...
2
votes
1answer
93 views
Same SOQL Query taking a long time in a “VF page controller” VS in the “Developer Console”
Simple query, taking 1 minute in the VF page controller, and less than 1 second when executed in the Developer Console. There are more than 50,000 records that the query is searching through. Why ...
1
vote
1answer
715 views
Salesforce: System.LimitException: Too many SOQL queries: 101
Everything worked fine a couple of days ago, no new changes have been made to the system except from the profiles.
Suddenly I got this error message:
Error: Invalid Data.
Review all error ...
1
vote
2answers
166 views
How to get Email from Task object record using SOQL
I am trying to get the Contact/Lead email from the Task object using SOQL (I am creating an interface in PHP to back up messages with a specific subject). Here is my query right now:
SELECT ...
0
votes
1answer
305 views
Apex Component Controller can not get value from apex:inputText/inputField
I have a simple custom component that I want to use to send an email. The structure is like this:
<apex:form>
<apex:actionFunction action="{!sendEmail}" name="sendEmail" />
...
0
votes
2answers
226 views
no viable alternative at character ''
I'm getting this error when trying to execute the following. I get my deadline date from a Visualpage which is binded directly to a controller.
QueryException: line 1:322 no viable alternative at ...
0
votes
1answer
214 views
Extract the real value of the relationship lookup field in soql
I'm a newbie to soql relationship queries. I've been trying to to get this working but not sure if this is even possible.
Select Id, Name, CustomObject__r.name From Account where customobject__c != ...
0
votes
0answers
122 views
APEX: How do you serialize nested Parent-Child relationships into JSON?
In FinancialForce, I have an object pse__Project_Task__c that can be related to itself (its parent), N-levels deep. I'd like to be able to extract all my tasks and serialize them into JSON as:
[
...
1
vote
1answer
97 views
Salesforce SOQL - DefaultDivision with User info
I'm trying to write a SOQL query that pulls back User information along with the DefaultDivision's name. When executing the following:
Select u.Email, u.FirstName, u.LastName, u.DefaultDivision from ...
1
vote
0answers
79 views
SOQL - single row per each group
I have the following SOQL query to display List of ABCs in my Page block table.
Public List<ABC__c> getABC(){
List<ABC__c> ListABC = [Select WB1__c, WB2__c, WB3__c, Number, ...
0
votes
1answer
176 views
Salesforce Best Practice To Minimize Data Storage Size
I need to add an array of strings (approximately 1-5 strings 10-30 characters long) to one of my custom objects.
From what I've read, Salesforce multiplies the total number of objects in your Org by ...
1
vote
1answer
338 views
Unable to output rows from SOQL query to <apex:repeat>
I'm getting this error:
Description Resource Path Location Type
Save error: Unknown property 'OpportunityStandardController.getLines' AlexHelloWorld.page /SFDC/src/pages line 0 Force.com ...
1
vote
1answer
366 views
Query two custom objects joining on the Name field
I want to create a join on two custom objects joining on the Name field. Normally joins require a lookup or master-detail relationship between the two objects, but I just want to do a text match.
I ...
0
votes
2answers
79 views
Salesforce SOQL returning wrong set
I am executing a SOQL and when I am firing
SELECT COUNT(ID) FROM Contact
then it's returning 12958 no of result set but when I am firing
SELECT LastName, ts2__Text_Resume__c FROM Contact
then ...
0
votes
1answer
58 views
How to access to column that is returned SOQL relationship query?
Following code is not working.
The error message is "Compile Error: Initial term of field expression must be a concrete SObject: LIST at line 8 column 16" (return line is line 8)
public String ...
0
votes
2answers
253 views
SOQL in apex - Getting unmatched results from two object types
Does any one know how to write an SOQL in apex for below scenario
" There are two object say "Countries" and "MappedCountries" where Countries object will have a complete list of Countries and ...
2
votes
1answer
942 views
Salesforce.com Trigger: Copy Contact Lead Source to Opportunity
I'm stuck on the syntax (and maybe the logic) of writing this Salesforce.com Trigger. I want the trigger to check to see if a primary contact is listed in the ContactRoles on the Opportunity. If ...
6
votes
1answer
189 views
Salesforce - SOQL Use mod() or similar math functions in SELECT?
I'm trying to query all Opportunities that have a Price that's not a whole number (no decimals) or if its price is not multiple of 10.
Im trying to find prices like: U$S 34,801.23 - U$S 56,103.69 - ...
3
votes
1answer
253 views
salesforce soql campaigns with influenced opportunities
I'm trying to create a SOQL query that returns a list of Campaigns with Influenced Opportunties, similar to the standard campaign report with the same name. The following doesn't seem to be returning ...
1
vote
1answer
41 views
SOQL Strip Time or Date Construction
Is there any way to use SOQL to strip the time out of a datetime column or to construct a date?
e.g. SELECT DATE('2001-12-31') would return December 31, 2001
4
votes
1answer
307 views
How to add comments in SOQL
Is it possible to put comments in SOQL?
The Force.com explorer doesn't support basic operations like undo/redo and I can't find any way to enter comments so experimenting with queries is painful.
...
0
votes
1answer
187 views
Adding Columns dynamically to Salesforce Reports
I need to add columns to a salesforce report dynamically(based on particular conditions). I'm planning to do this with a trigger that is looking for my conditions. My two questions,
Is it possible ...
1
vote
2answers
38 views
Report results and security
I want to make sure I understand something.
One of the users created a report, and it returned 1 record. When I ran her report, it also returned 1 record. When I rebuilt the report from scratch (I'm ...
1
vote
1answer
433 views
SOQL query that extracts data that got updated in the last x hours
I'm using CLIq and scheduled a task that is supposed to run every x-hours.
My issue is that my SOQL query gets all the items from the database where I only need to extract the stuff that got updated ...
1
vote
1answer
101 views
how to get the name field of a record when given the id
I have a query:
SELECT Id, recordtypeid FROM myObject__c
but instead of returning the recordtype id, i want to return the recordtype name. How do i do that?
0
votes
3answers
183 views
SalesForce limit on SOQL?
Using the PHP library for salesforce I am running:
SELECT ... FROM Account LIMIT 100
But the LIMIT is always capped at 25 records. I am selecting many fields (60 fields). Is this a concrete limit?
...
