Top "Salesforce" questions

A Platform-as-a-Service development environment delivered on Salesforce.

Couldn't see the tab I created when I log in as another user (on Force.com Platform)

I was working one of the force.com coockbooks. I created a Mileage object and addes some features like workflows …

salesforce force.com
How can I get subList of a List in Apex Salesforce?

I have got a list of SObjects having N number of items/sObjects SObject[] sList = [sobject1, sboject2, sboject3, ........ , sobjectN] How …

list salesforce apex-code apex sublist
How to get downloadable link for attachment?

I uploaded jpeg image for an account. The jpeg image file id is 069i0000001dkl8 and it can't access via, …

salesforce salesforce-service-cloud
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 …

salesforce soql
inputField databinding issue with VisualForce

I'm having strange results with a Visualforce page (yes, Salesforce.com is icky, I know). My issue is that I …

salesforce apex-code visualforce
How do I introspect the class of a variable in APEX?

I would like to know the class of a variable/property at runtime. For example: Integer i = 5; //pseudo-code if (i.…

dynamic salesforce apex-code
Salesforce lightning Action modal size

I used a Lightning Component and I wanted to know how can I set the width of lightning action modal …

css salesforce salesforce-lightning aura-framework
Apex AddError to SObject field

Has anyone found a way of adding a dynamic field level error to an sobject? I would like to do …

salesforce apex-code
Querying over 1,000,000 records using salesforce Java API and looking for best approach

I am developing a Java application which will query tables which may hold over 1,000,000 records. I have tried everything I …

java api salesforce
Access Salesforce Apex Soap Webservice from Java

i'm trying to establish a Connection to my Apex-Webservice but it fails everytime. My Webserce is quite Simple: global class …

java web-services soap salesforce apex-code