Tagged Questions
SOQL is the Salesforce Object Query Language.
4
votes
2answers
526 views
Linq to Salesforce “SQL” provider
So, I have this new project. My company uses the SalesForce.com cloud to store information about day-to-day operations. My job is to write a new application that will, among other things, more ...
3
votes
1answer
3k views
SOQL query with subquery
I'm having trouble getting the results I want from a Salesforce/Apex/SOQL query.
I want: A list of Contact objects containing only contacts who are CampaignMembers of a set of campaigns; and they ...
3
votes
2answers
1k views
SOQL Pagination for Salesforce API queries
Is there an efficient way to page through results from a SOQL query without bringing all the query results back and then discarding the majority of them?
As an example, I'd like to be able to to page ...
3
votes
6answers
3k views
Does anyone know of a good salesforce.com SOQL resource?
I have been looking for a decent guide to salesforce.com's SOQL query language and a schema for their tables but I can't find anything that is remotely decent. Does anyone know how I would go about ...
2
votes
1answer
67 views
Salesforce SOQL Query with Self Join + Relationship (ContentDocument/ContentVersion)
I'm trying to write a SOQL query to retrieve some Salesforce Content records and am having a bit of difficulty figuring out my next step. I want to exclude all versions of a document if a custom field ...
2
votes
1answer
62 views
SOQL date comparison for formula(date) date type
can anybody help me with writing a SOQL query. Using "Date" data type in WHERE statement is easy, it behaves like a normal Date would. But if the data type is "Formula(Date)" it seems like normal date ...
2
votes
1answer
117 views
Fields get unwantedly concatenated in Salesforce SOQL query result. Developer nearly loses it
I'm probably missing something quite basic, but I'm getting very confused (and frustrated) with the results I get from my SOQL queries to the Salesforce API.
My query:
Select Id, FirstName, LastName ...
2
votes
1answer
79 views
Complex query possible?
I have 3 tables, a parent table and 2 child tables. Lets say Mother_c is the parent. Then Child_c and Pet_c are the 2 child tables that have master-detail relationship pointer to Mother_c.
I have ...
2
votes
1answer
280 views
Soql query to retrieve opportunities between two dates
I am trying to retrieve opportunities created between 01-01-2011 and 06-30-2011.
Select o.CreatedDate, o.Id, o.LastModifiedDate
from Opportunity o
where o.CreatedDate > '1/1/2011' and ...
2
votes
1answer
350 views
SalesForce API query doesn't show custom fields
I have a custom date field for accounts in SalesForce: LastCheckedDate (API Name: LastCheckedDate__c)
I'm trying to use the SalesForce Enterprise API to query accounts based on that field. It ...
2
votes
1answer
535 views
SOQL Type conversion (SalesForce.com)
The problem is that I need to compare two fields of different types in a SOQL query.
TextField is a Picklist (so really text) and IntField is a Number(2, 0). Changing the types of these fields is ...
2
votes
1answer
81 views
Output Array Items
I'm using Salesforce.com Toolkit for PHP and I'm trying to output something I think is very simple.
THIS IS WORKING EXAMPLE CODE
$query = "SELECT ID, Phone FROM Contact LIMIT 5";
$response = ...
2
votes
3answers
919 views
Good ways to use Crystal Reports with Salesforce?
Does anyone know good ways/tools/approaches for using Crystal Reports with Salesforce.com?
I know that Crystal Reports for Salesforce exists but I'm wondering what other possibilities there are...
2
votes
3answers
2k views
SQL to SOQL Conversion (Salesforce.com SOQL)
Has any one done SQL to SOQL Conversion for Salesforce.com Objects?
1
vote
1answer
18 views
Is there a way to validate the syntax of a Salesforce.com's SOQL query without executing it?
I'm writing an API that converts actions performed by a non-technical user into Salesforce.com SOQL 'SELECT', 'UPSERT', and 'DELETE' statements. Is there any resource, library, etc. out there that ...
1
vote
1answer
34 views
System.SObjectException: SObject row was retrieved via SOQL without querying the requested field:
I have a custom object called Technology__c and join object called AccountTechnologies which is a join object between Account and Technology__c .So AccountTechnologies has a master detail relationship ...
1
vote
2answers
53 views
Query user permission level for an object's parent?
I have a custom object with a master-detail to opportunity. Is there a way to determine if the user has read or read/write access when querying this custom object?
To clarify my needs, I'm looking ...
1
vote
2answers
67 views
salesforce SOQL : query to fetch all the fields on the entity
I was going through the SOQL documentation , but couldn't find query to fetch all the field data of an entity say , Account , like
select * from Account [ SQL syntax ]
Is there a syntax like ...
1
vote
1answer
49 views
Salesforce and SOQL : Accessing a grandchild object from the Grandparent
I'm attempting to access a grandchild object.
I have 3 Objects,
Opportunity,
Quote,
QuoteLineItems,
Opportunity is a Parent to Quote and Quote is a Parent to ...
1
vote
2answers
107 views
SOQL query to retrive records
I need to query an object called trans__c which has the following fields
id,
scantime__c // datetime
name
asset__c // external id
status
I need to get only data which has status as pending and ...
1
vote
1answer
45 views
How can I query records based on User permissions?
Is there a way to only return Accounts (using SOQL) that the current user has write access to?
For example, if I go to a specific Account and click the [Sharing] button I can see a list of Users (and ...
1
vote
2answers
164 views
Ordering and Limiting A Subquery In Salesforce SOQL
I am attempting to retrieve the owner of a case, based on a partial match, where we choose the most recent case that matches the partial match.
This is the query I am attempting:
SELECT ...
1
vote
1answer
92 views
Is it possible to subquery using SOSL?
I have a SOSL query that finds Salesforce Campaigns, and that's working just fine. However, I need to retrieve all Account Team Members for each returned Campaign. Is it possible to add a subquery to ...
1
vote
3answers
219 views
Salesforce SOQL relationship query question
I want to get the field userhomepage from the custom table WebsiteUser via a SOQL query on the Account table. I tried about 10 different queries but i'm not getting it working...
fe. I've tried ...
1
vote
1answer
128 views
Salesforce API: How to retrieve a Case using a partial Case Id
I'd like to retrieve a Case record from the Salesforce API. I only have the beginning of the Case Id (don't ask why) so I've tried the following query:
SELECT Id FROM Case WHERE Id LIKE ...
1
vote
2answers
407 views
How do you parse a SOQL AggregateResult column with no value?
Let's say you run a SOQL aggregate query that looks like this:
select OwnerId, sum(ExpectedRevenue)val from Opportunity GROUP BY ROLLUP(OwnerId)
For whatever reason, there are no Opportunities with ...
1
vote
1answer
542 views
How can i extract attachments from salesforce?
I need to extract attatchments out of salesforce? I need to transfer some notes and attachments into another environmant. I am able to extract the notes but not sure how to go about extracting the ...
1
vote
1answer
588 views
Checking for Blank Date field in Salesforce
How do I check if a field is Blank in Salesforce using SOQL.
Thanks
1
vote
3answers
308 views
Hierarchial SOQL Query
Does anyone know how to retrieve the hierarchical model of a account based on it's id?
I tried using this query but all i got is the first set of child nodes.
select a.Name,a.parentId,a.ownerid,a.id ...
1
vote
2answers
1k views
SOQL query WHERE Date = 30_days_ago?
This seems like it should be pretty simple but I can't seem to find a working answer to this. How do I make a SOQL query like this?
SELECT id FROM Account WHERE LastActivityDate = 30_DAYS_AGO
This ...
1
vote
2answers
1k views
Salesforce/SOQL - Given child, how to return “top level” parent account?
I have an issue where I need to find the top level parent account for a child. The best I've been able to do is filter up from the child w/
SELECT id, name, parent.id, parent.parent.id, ...
1
vote
2answers
345 views
How do I request a single random row from a force.com database in SOQL?
Total row-count is in the range 10k-100k rows. Can I use RAND() on force.com? Unfortunately although all the rows have a unique numeric identifier, there are many gaps, and I'd often want to select a ...
1
vote
1answer
786 views
Is it possible to concat strings in SOQL?
I've read thread from 2005 and people said SOQL does not support string concatenation.
Though wondering if it is supported and someone has done this.
I'm trying to concat but no luck :(
Below is ...
1
vote
1answer
539 views
Limit not working when testing Dynamic SOQL
I am running a Dynamic SOQL query in my apex test code, and the LIMIT clause is not working. It does however seem to work when using it in the production code.
The Query is similar to below. I ...
1
vote
2answers
783 views
Using the Salesforce PHP API to generate a User Profile Report
Looking to do a security audit of all user permissions. I think I can use the Salesforce PHPToolkit 11 API to generate the report but new to Salesforce and a little confused on where to start.
In ...
0
votes
0answers
9 views
get apex package prefix name?
is there a way to get the prefix name of a managed package in apex?
I have a SOSL query but the app is in a developer org and in a managed package, if I have a way to get the package name, it would ...
0
votes
1answer
16 views
What is the SOQL to get all Public Calendars, in a Salesforce instance?
Does anyone know how to perform a query to get all public calendars? You can see the list by going to Setup ... Customize ... Activities .. Public Calendars and Resources
What are these calendar ...
0
votes
2answers
48 views
Check Salesforce User/Profile for Permission to Send Mass E-mail using Apex/SOQL?
On the Profile page in Salesforce, there's an permission checkbox for Mass Email. How can I query this value using Apex?
0
votes
1answer
163 views
How do I display the results of an aggregate SOQL query on a Visualforce page?
I'm very new to Visualforce.
I'm looking at this page here: http://force.siddheshkabe.co.in/2010/11/displaying-aggregate-result-on.html
So when I added this code onto a VisualForce page:
...
0
votes
0answers
50 views
Is it possible to Query EmailTemplates based on User/Profile permissions?
For some reason, whenever I query EmailTemplates or Folders in Apex, all of the EmailTemplates or Folders are returned regardless of User. Usually queries only return records the current User has ...
0
votes
1answer
98 views
Salesforce SOQL Query to access a child field in WHERE statement
I am attempting to write a query on an object, Opportunity, this object has a child object Quotes.
In Quotes where have a field named, Order_Ready.
What I need to do is filter in all opportunities ...
0
votes
0answers
22 views
I am having some problems querying relationship within our schema using the SOAP API?
I am trying to query the relationship "Assigned_To__r" within the "Case" object, so I can return the Name of the User that is currently assigned to the case.I have tried many different syntaxes, ...
0
votes
1answer
132 views
Where clause on a Salesforce subquery
I'm running into some trouble filtering my SOQL Query by date where the date field belongs to the child of the object I'm querying.
I couldn't find anything in the documentation, and I tried two ...
0
votes
1answer
71 views
Relational SOQL in Salesforce PatronManager
I'm attempting to build an application using the Salesforce API (with custom PatronManager objects) and when I run the following "parent-to-child" query I get an error message stating that the ...
0
votes
1answer
149 views
Bulk Before Delete Trigger (Too Many Soql Statements) Salesforce.com
So i have no idea why this is, and i don't understand it.
I have a bulkified trigger that uses maps in order to avoid running into SOQL governor limits. This trigger also uses static class variables ...
0
votes
2answers
179 views
Salesforce SOQL To Get Case Owner In One Hit
Using Salesforce SOQL I can get the Owner's Id using the following:
SELECT Case.OwnerId
FROM Case
WHERE Case.CaseNumber = '00001234'
I can then get the User details for the User who owns the case ...
0
votes
0answers
72 views
Error while executing query for custom object Work Order
I am executing the query for my custom object created in SFDC. but i am getting the following error:
{'[{"message":"\nSELECT FS_Account_Name__c from FS_Work_Order__c\ERROR at Row:1:Column:34\nsObject ...
0
votes
3answers
354 views
Strange Salesforce.com SOQL relationship syntax
I'm looking at an SOQL query that may either be hideously out of date or using some facet of their magical field__r.foreign_table join syntax, the code contains a reference to
USER_JOBS__R
where ...
0
votes
1answer
141 views
Salesforce SOQL return all partners of single account
I am trying to find all the account that have the same partner. I am new to SOQL and I cannot do a join so I am at a loss. Here is the closest I have gotten:
Select Name, Site, Status__c
FROM Account ...
0
votes
1answer
509 views
Update opportunity when lead is inserted via trigger in salesforce
I want to write a bulk trigger (keeping governer limits in mind) such that when a new lead is inserted whose 'x' field value is same as 'y' field value of some opporunity, It updates field 'z' of this ...