A Platform-as-a-Service development environment delivered on Salesforce.com, sometimes also referred to as Force.com. A dedicated Salesforce Stack Exchange public beta is available for all your Salesforce questions at http://salesforce.stackexchange.com/
0
votes
0answers
4 views
Apex Trigger Exception
"Error: Invalid Data.
Review all error messages below to correct your data.
Apex trigger ItemizationAfterTrigger caused an unexpected exception, contact your administrator: ItemizationAfterTrigger: ...
0
votes
2answers
23 views
Using Ruby Watir, how can I select a checkbox that has a changing ID?
This is the HTML I'm working with:
<div class="pbSubsection">
<table class="detailList" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
...
0
votes
0answers
7 views
Is it possible to pass security token back to company portal?
Here's the scenario:
Our company portal is migrating to salesforce, however we have a few pieces of functionality that our customers will still need to access on our company portal. Is there a way ...
-1
votes
0answers
7 views
Test class for trigger salesforce
Can u plz write test class for the following trigger.
I am new to salesforce.
trigger TestAsset on Asset (Before Insert,Before Update) {
List lstAssetIds=new List();
List lstProductIds=new List();
...
-3
votes
0answers
13 views
Integrate Saleforce-cloud computing system for CRM [closed]
Iam new to salesforce. I got a requirement asking me to:
1. Set up a form which can capture details into salesforce
2. Send out an autoresponder email to the person who signed up.
What all will I ...
-2
votes
0answers
12 views
Salesforce multi-tenancy implementation using .Net [closed]
I wondered that salesforce team discover flexible solution for multi-tenancy:
Does anyone knows is there are already .net implementation of this?
0
votes
0answers
9 views
Turn off lead assignment rules in salesforce lead trigger
I'm having trouble with a Salesforce lead trigger, fired after insert. The lead assignment rules need to be on by default, but I need to bypass the rules for leads that match a certain criteria.
...
0
votes
1answer
15 views
Salesforce Professional Edition API doesn't support all fields of SalesForce contact
https://eu1.salesforce.com/services/data/v20.0/sobjects/Contact/{contactId}.xml?fields=Id, Name, FirstName, LastName, Salutation, Title, Email, HomePhone, MobilePhone, OtherPhone".
When I use the ...
0
votes
0answers
8 views
Force.com and database.com integration
I need to develop a separate portal for each customer on Force.com using visualForce. I am planning to store my data in database.com. Can I access the data from the database.com from my Force.com ...
0
votes
1answer
17 views
How to find if an apex:inputField is disabled
From a VisualForce controller, how can I find if a dependent pick-list inputfield is disabled?
There does not seem to be an accessible 'disabled' property for the field. I am creating validation to ...
0
votes
1answer
26 views
Lack of security for force.com sites?
I am exposing a page with a standardcontroller="account" to a force.com site facing the public. This page displays account specific data to the clients. Now when a customer logs in to my website I ...
0
votes
1answer
14 views
Committing multiple object in one go
I have a situation where I use force.com sites to run a shopping cart. During the first 5 pages of the shopping cart, I gather the data such as credit card number shipping address, etc.
The last ...
0
votes
0answers
23 views
visualforce email template returns blank/ no rows for assignment to SObject
So we have a workflow rule that indicates when a Case is submitted with certain criteria, a task is created for the appropriate team member. These team members do NOT have access to cases due to only ...
0
votes
1answer
19 views
Create a custom Case phone field that is a copy of the Contact.Phone field
I want to add a custom field to the Case object that is searchable by SOSL "FIND ... IN PHONE FIELDS" (ie it must be of type PHONE), and contains a copy of the Phone field in the Contact that is ...
0
votes
1answer
12 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
12 views
Configuring OAuth 2.0 Access for Application
I want to register my web application into SF to enable further OAuth2.0 protocol. As I have followed from SF documentation :
...
0
votes
2answers
51 views
jQuery Click Function is not working
My page was
<apex:page >
<apex:includeScript value="{!URLFOR($Resource.jquery)}"/>
<script type="text/javascript" >
var jQuery = $.noConflict();
jQuery(document).ready(function () ...
-2
votes
0answers
10 views
salesforce records in a heroku app [closed]
Unable to fetch the records from sales force account through a heroku application in canvas. I had tried the j query with ajax function .
So please provide some resource or solution to go further .
0
votes
1answer
18 views
Creating an application that interacts with salesforce?
I wanted to get some insight on best practices for Salesforce application development. Basically I am developing an on premise Windows service that will push data to Salesforce, using either the REST ...
0
votes
0answers
26 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
2answers
39 views
javascript to check string in this format
i want javascript code to check whether my input text is in specific format as AS0301-12345
<apex:inputText id="searchText" value="{!searchText}" onmousemove="checkingstring(this)"/>
...
0
votes
0answers
13 views
Convio Shortcode showing raisers over $X
I'm looking to see if there is a way to edit the Convio Top Participant shortcode to only display those who have raised over $1,000.
Right now the code is as follows.
...
1
vote
2answers
51 views
How do you define a string in JavaScript that could contain any character?
Even though I'm using a Salesforce variable in my JavaScript, it is not necessary to know Salesforce to answer my question. There's a password field I want to access. I can do this by using the ...
0
votes
0answers
21 views
Salesforce Custom Button AJAX-SOQL on Junction Object
Our requirement was to be able to update one Master object's fields on change of another Master's fields.
Button Code:
{!REQUIRESCRIPT("/soap/ajax/27.0/connection.js")}
var queryString = ...
0
votes
0answers
10 views
How to save a file's content(bytestream) from HttpResponse object to a pdf in apex code
On a page load(or a hyperlink click) I am calling a method which is calling a webservice. Webservice returns content of a pdf file(residing on jackrabbit content repository) as bytestream in the ...
0
votes
1answer
30 views
Concatenating two values then update to one field
I am new person in salesforce can you please help me .
I have one custom filed opportunityName this is auto number field,In this field i have to add two fields values those two are pick list fields. ...
1
vote
2answers
36 views
Accessing SalesForce custom object Issue
I am trying to call my Salesforce custom object with c#. Name of the object is CommercientSF__SorMasterRep__c but when i try to upsert into it gives me error like
INVALID_TYPE: sObject type ...
0
votes
0answers
13 views
Different handling of the Pricebook2 object in Salesforce's sandbox
can somebody please explain to me why, in my Sandbox environment, I have a label (under App setup -> customize) called "Price Book" that I can't see in my Production environment? I am able to add ...
0
votes
1answer
26 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 ...
0
votes
1answer
26 views
Salesforce Soap API Login
I've made a soap api login call to the saleforce sandbox and everything works fine.
However when I try to move it to the live environment I'm having problems.
INVALID_LOGIN: Invalid username, ...
1
vote
0answers
11 views
Lightbox is not closing in some browser apex
I am using lightbox in my page. While closing light box it is closing fine in all browser.. But it is not properly closing in Opera..
My light box component code -
<apex:component >
...
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 ...
0
votes
0answers
29 views
Uploading Multiple Files in Salesforce through Visualforce
I would like to upload multiple files in Salesforce using visualforce.
I can upload one file at a time.
But my requirement is, i want to display only one "add a file" button in visualforce page, when ...
0
votes
1answer
26 views
Salesforce: Any API for getting user information?
I am trying to find a way to get the information about the salesforce enterprise user from his auth_token. I want to find the username, email address and role(admin/user) from the auth-token.
...
0
votes
1answer
9 views
Are we able to modify the chatter digest content?
I want the customize format for chatter digest mail. So, Are we able to modify the content of chatter daily digest sent through the mail? or is there any way to achieve this requirement?
Thanks.
-1
votes
0answers
19 views
SalesForce Pricing [closed]
We want to collect the data ourselves regarding the companies and store the data in SalesForce. We want to create the apis using Apex to access from our C# application. So we will be accessing the ...
0
votes
1answer
11 views
Dynamically assign rowClasses attribute on <apex:dataTable> component
I have a VisualForce page that renders into a PDF file with the following component declaration:
<apex:dataTable value="{!someSObjectList}" var="SObj"
rowClasses="{!IF( MOD( pos, 2 ) == 0, ...
-1
votes
0answers
13 views
WSO2 IS + Salesforce [closed]
I'm trying to authenticate with Salesforce using SAML2 SSO WSO2 IS but now I lose a bit since I do not know where to put the parameter "End OAuth 2.0 token" that comes in WSO2 IS Salesforce to perform ...
0
votes
1answer
31 views
How to wrap apex:columns in a div to use in slideToggle()
I am trying to have a jquery slideToggle() function bound to a row of data in an apex:pageBlockTable.
I am displaying some information in the table and want that if someone clicks on any row, some ...
0
votes
1answer
27 views
salesforce not expected object returned calling query
I am using the sforce-php toolkit to get some objects from salesforce. I have the following code:
$mySforceConnection = new SforcePartnerClient();
$mySoapClient = ...
0
votes
0answers
20 views
How to display a byte stream on visualforce page?
I have few documents in jackrabbit content repository which I want to display in the browser on the click of a link on visualforce page.
I have a web-service to access those documents and ...
0
votes
0answers
21 views
Decrypting AES128 Salesforce Values using C#
I am facing a Padding issue when decrypting the encrypted Salesforce field values which are currently being sent in a Query String over to my web app.
I have tried using the solution proposed in ...
0
votes
1answer
41 views
How to remove auto appended Html tag in visual force page?
I am working on html5 offline mode in sales-force. I added following line to cache current page.
<html manifest="{!$Page.offlineCache}">
I turn off the developer mode and check the console. ...
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
35 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 ...
0
votes
1answer
30 views
Implement a form in Salesforce
I am currently the Salesforce administrator of a company Enterprise account. Our accounts are made up of universities. I was asked to implement a form for trips.
The trips basic information is: Trip ...
1
vote
1answer
37 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
1answer
24 views
Visualforce Page navigation issue
I have pretty long Visual force page in my application i have to requirement to save it automatically for every 60 sec seconds.So whenever i save the page the cursor goes to the top of the page ...
0
votes
2answers
16 views
Make checkbox read only if opportunity probability is 95% or more
Is there a way to make checkbox read only if opportunity probability is 95% or more?
0
votes
3answers
47 views
Passing values from child window to parent window which is on another domain?
Parent window is served from my.salesforce.com domain and the child (pop-up) window is served from another domain, visual.force.com. The functionality is to populate the value the user selects in ...

