A Platform-as-a-Service development environment created by Salesforce.com, which underlies the core Salesforce CRM functionality and is available as a platform via database.com, as well as via Heroku, a Ruby-on-Rails environment.

learn more… | top users | synonyms

1
vote
1answer
16 views

SOAP callout fails silently

I have generated an Apex class from my WSDL successfully and was able to authenticate on the remote server by setting the HTTP Authorization header manually. I have double checked on the remote server ...
1
vote
1answer
39 views

Trigger Duplicate CSV

am trying to upload a CSV file / insert a bulk of records using the import wizard. In short I would like to keep the latest record, in case if duplicates are found. Duplicates record are a combination ...
0
votes
1answer
33 views

how to Deploy salesforce app from eclipse

Ok so i'm new to salesforce.I started by installing the force IDE from http://wiki.developerforce.com/page/Force.com_IDE_Installation I have a salesforce application code that i want to deploy in my ...
1
vote
1answer
34 views

How to install from salesforce eclilpse source code

i'm new to salesforce and havn't yet worked in salesforce using eclipse.The situation is such that i have a salesforce app project eclipse source code. Can any guide me about how to install salesforce ...
0
votes
0answers
6 views

cannot package new logo for salesforce manage package

There is a situation while releasing a new a version to my app on salesforce. I am currently running V1.0 on app exchange and now about to release V2.0 on of the changes I've made here is changed the ...
0
votes
0answers
58 views

Salesforrce: JavaScript Remoting “Uncaught ReferenceError: Visualforce is not defined”

I'm using JavaScript Remoting in my Force.com site. This works well apart from a scenario I have noted where when I click on an apex:commandLink or apex:commandButton in a component which then opens ...
1
vote
2answers
64 views

Declaring new variables on the fly?

Has anyone found a way to declare variables on the fly? I have some variables that can be limitless... val1 val2 val3 val4... Is there a way to create these on the fly, something like... ...
0
votes
1answer
37 views

Grab textbox salesforce ID and display somewhere else on same page

I have a apex:textbox which renders on a visualforce page with a SF ID. I need to grab the SF ID on the same page load and place into a link. eg: I need this: <input ...
0
votes
1answer
45 views

Populating SelectList with sobject

I am trying to create a class that will populate the a multi selectlist depending on what URL parameters are passed in. Im having trouble. The slectlist never renders, however, looking through the ...
0
votes
1answer
69 views

Force.com IDE Plugin for Eclipse

When I am trying to download Force.com Plugin for Eclipse, it was unsuccessful and gives me the following error.Please give me a solution for this. Cannot complete the install because of a ...
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
105 views

Making a Tree-Like Structure in VisualForce/Apex from a Self-Referencing Table/sObject

My Controllers are all custom. I have an object/table with a field that references the same object and signifies the parent object. There are many rows in the object/table. I wish to dump all of ...
0
votes
1answer
104 views

Salesforce: Can a Javascript Remoting Static Function Access ApexPages.CurrentPage Functions?

I was wondering, In a RemoteAction function in an apex class can or should this be able to access the current force.com site page? I would like to access and write to cookie parameters from within my ...
0
votes
2answers
32 views

Query DB using apex in salesforce

com and apex triggers I have two objects namely Customer_c and Order_c I am trying to write a trigger to delete an order entry belonging to a customer who has been made inactive. Basically i want to ...
1
vote
1answer
74 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 ...
1
vote
2answers
101 views

How can I pass variables state from one page to another, if both pages use the same controller, but the second page uses a controller extension?

I have a page that needs to pass data to another page. They both use the same controller, but the second page has its own controller extension. When the first page passes data to the second page, the ...
0
votes
1answer
35 views

input to Websphere Message Broker

I have an requirement to send data from Oracle DB to SFDC account. Scenario: Oracle DB -> WebSphere Message Broker(MB) -> WebSphere Message queue(MQ) -> DataPower (Service) -> SFDC account I’m not ...
0
votes
1answer
34 views

Future Method is not updating value of a field

I want to implement synchronization in salesforce using apex. My Requirement is that, i have to update a field from the future method. I have a field in database with name Counter_c and i am calling ...
0
votes
1answer
130 views

Cannot retrieve JSON POST via PHP: cURL

I tried implementing the following PHP code to POST JSON via PHP: cURL (SOME FORCE.COM WEBSITE is a tag that signifies the URL that I want to POST): $url = "<SOME FORCE.COM WEBSITE>"; $data = ...
1
vote
2answers
73 views

How to use python to parse XML to required custom fields

I've got a directory full of salesforce objects in XML format. I'd like to identify the <fullName> and parent file of all the custom <fields> where <required> is true. Here is some ...
0
votes
2answers
361 views

ANT error: failed to create task or type antlib:com.salesforce:deploy

I've started to play with the Force.com Migration Tool. I want to use it from an ANT build file. I've created this one: <project name="Subversion to Org" default="deploy" basedir="." ...
1
vote
1answer
708 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
947 views

How to find out which checkboxes have been selected on the next page in VisualForce?

I have a data table which iterates through a custom object and generates checkboxes. On the second page, I want to determine which of these checkboxes have been selected. In the VisualForce page: ...
0
votes
1answer
239 views

Automated upload of a Salesforce file to Box.com record-linked folder

I have a Box for Salesforce intregration app installed and it works great when a user manually adds a file to a SFDC record. I have an Apex class that creates a PDF file that needs to be linked to a ...
0
votes
1answer
37 views

Error trying to insert custom link in page layout in saleforce

I just created a custom link to a salesforce report /xxxxxx/?pv0={!Account.Id} But when i insert this custom link on the account page layout and click the link it shows error URL No Longer Exists ...
0
votes
1answer
26 views

Contact without account does not show for lookup value in force.com sites

I have created a lookup field on my custom object to contact and it is used on visual force page. Also i have used custom lookup page. In salesforce org it works fine and display lookup value. But ...
1
vote
1answer
43 views

Installing Salesforce apps via code

I am interested to install our "Connected" Salesforce app to customer's Salesforce setup when they run our product's installer. Is this functionality exposed via an API or any other mechanism? Or is ...
0
votes
2answers
235 views

SalesForce API: OAuth authorization error 1800

I am brand new to SalesForce development, and want to explore the API and its capabilities. I have created a new Developer Edition account. I have not yet tried to access the API programmatically, but ...
0
votes
1answer
56 views

how to Query accounts in developer.salesforce.com

i'm a salesforce newbie, so my question might be a trivial one. I just tried the code here http://www.tgerm.com/2011/03/javascript-remoting-jquery-templates.html to query accounts from a visual force ...
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: [ ...
0
votes
0answers
76 views

Security Review Salesforce | Burp License Request

I need to pass security review on salesforce and it is mandatory to pass my application through Burp scanner and when I request the license from the link and it says you must be enrolled in the ...
0
votes
1answer
336 views

Failed to create the part's controls in Eclipse with Salesforce

I have Eclipse Juno and Force.com IDE. When I try to create new classes they always show: failed to create the part's controls. It worked for the first time, but now they always show this. Same ...
2
votes
2answers
247 views

Apex batch not executing all records

I'm relatively new to Apex, but I have a question about a batch job that I am creating. I am trying to insert AccountTeamMember records based on my company's territory alignment. The code seems to be ...
0
votes
1answer
48 views

How can methods be added to Custom Objects in Force.com APEX?

I was under the impression that Force.com eliminated the necessity of object-relational mapping. I can't create a an object that extends a custom object like this: class Program extends Program__C() ...
0
votes
2answers
86 views

Upload a java/php/python.. application on Force.com

I m making a survey about cloud paltforms and I have the following the question: Is it possible to upload a java/php/python etc... application on Force.com just like you can do with Google app ...
-1
votes
1answer
35 views

Salesforce : Application Administration [closed]

Anyone can explain about this question ? If the actors who will be using the applications are not determined before the creation of application, which of the following will happen? Select any two ...
0
votes
1answer
145 views

VisualForce, Listing Two Objects on a “single” Page

I have read most tutorials and googled a lot, with no success... Let's assume that I have Two DB objects. I'd like to have a "single page" that lists their records side-by-side. The result will ...
0
votes
0answers
36 views

Load twitter tweets of a user into salesforce application

Well i'm a new be when it comes to salesforce,so this might sound trivial.i googled but could'nt find any thing about what i'm trying to do here. Can any one tell me how to load twitter tweets of a ...
1
vote
1answer
124 views

Salesforce “View All” Permissions on a Detail Object, Will it give view all on the Master Object because of Master-Detail Relationship?

I've researched/read what I can on Master-Detail relationships in Salesforce but still have a query regarding permissions: If I grant "View All" access to the Detail Object in a Master-Detail ...
0
votes
0answers
97 views

Force.com REST API refresh_token not working?

I am working with force.com REST API using PhoneGap, JQuery mobile By using REST-API tool kit if found it in Github. I am using ChildBrowser for authentication. What i am doing is first i am logging ...
0
votes
0answers
12 views

Force.com move org from one profile to another

Basically, I have two profiles right now. One that was set up by my company that has access to the social networking parts, payroll, usual work stuff. The other profile was accidentally created while ...
0
votes
1answer
32 views

SalesForce.com - How to create Book and Video object inheritance from Media?

I read in Force.com Developer Certification Handbook, in chapter 2 "Creating a Database on Force.com "? The relationship in show in this picture :
1
vote
0answers
159 views

force.com callout exception Unable to tunnel through proxy

We make a callout from one Salesforce org to another Salesforce org using the REST API. That worked until end of november. We didn't make any changes at the affected classes or configuration. Now, ...
0
votes
1answer
287 views

Salesforce:How to insert value for Goelocation datatype field using java?

I am inserting object into salesforce using REST API. I have one field with Geolocation data-type. How can inset value to this field using java? My example code is below. ...
0
votes
0answers
109 views

Is is possible to get static path to images inserted in Rich Text Box

We are having few rich text box in our custom objects in force.com enterprise edition. These rich text box are rendered in an android application given to our clients. Till now we were using the ...
1
vote
1answer
118 views

How to handle recurring holidays in Salesforce

In salesforce I can create recurring holidays and based on that in my apex class I want to check whether the current day is holiday or not. This works fine with normal non recurring holiday. But when ...
0
votes
1answer
120 views

Salesforce: Update Managed Object's Auto number Field…

I would like to know if we can update auto number field. When I tried updating using Dev Console system said : 'Field is not Writable' In our support product(Managed Package), I need to update/ start ...
1
vote
1answer
217 views

angular js force.com Javascript remoting

I am new to Angular JS and really struggling to get data into my controller from javascript remoting. Has anyone done this before? ...
2
votes
1answer
132 views

How to do lead history reporting in Salesforce?

I would like to measure the amount of time it takes a rep to open a new lead but cannot figure out how to run a report using the time component of the date / time stamp in the Lead history object. I ...
1
vote
1answer
229 views

Access Custom Field Salesforce

I have a created a custom field in Contacts object in Salesforce whose API name is "Resume_Text__c" and I'm making a SOAP call to get the value of that filed using Java Implementation by writing a ...

1 2 3 4