0
votes
0answers
4 views

Listing of research salesforce1

I need to change the views of the research in salesforce1 because if you search only appears the recent listing. However I need to see the whole list, ie to view all. It is possible to change the ...
2
votes
1answer
11 views

Problem with deciphering query

I am new to a Salesforce organisation and currently I am trying to make sense of the organisation's apex code. I came across this query and for the life of me I can't figure out what it does. This is ...
1
vote
2answers
21 views

Which Eclipse version is better for salesforce?

Which eclipse version best supports Salesforce? Helios? Kepler? or Juno? which one to prefer
1
vote
0answers
9 views

Detect if Visualforce Page is rendered as a Mobile Card or as stand-alone page

Is there any way to detect if a visualforce page is rendered inside a Salesforce1 Mobile Card as opposed to being rendered as a stand-alone page? I'm aware of a few javascript/URL Parameter ...
0
votes
0answers
5 views

Show html email status under account

Is it possible to show html email status along with activity history related list in accounts? Right now i have to click on the contact then only i can see the html status. Thanks
0
votes
0answers
10 views

Chatter window is not displayed

We will did managed package our code and after testing from test org. At this time chatter window is not showing any thing.. Any body help me regarding how to fix this error
0
votes
0answers
12 views

Issue with the api name of the field from report

I may VF page I am getting all the reports and from that reports I am getting the filters used for the reports. When I try to use the phone field it retrieve me name as phone1 and when I used First ...
-1
votes
1answer
20 views

multiple Standardcontroller

I have to use VF page of a custom object in Account page layouts.Please find my apex class as below. Apex class: global with sharing class poistionController { public HCP_Depth_Tracker_OAPI__c ...
0
votes
1answer
14 views

Show custom object ,not immediate child in Account's related list

I have to show custom object HCP Depth Tracker in Account's related list.It is having Account reference.It's child of Depth Tracker object which is immediate child of Account.My approach is by ...
1
vote
1answer
13 views

How do I parse a variable from my VF Page URL to my VF email template?

I need to get a string into my Visualforce email template. I have attempted to parse it over the URL as I thought it would be the easiest way but I'm not sure. I am using sendMail and sending the ...
1
vote
1answer
57 views

Returning Image from Query

I have a query fetching a document which is an image. I want to assign the image to a field (URL). I am doing: Document doc = [select id, name,url, body from Document where name = 'image']; ...
1
vote
1answer
18 views

Removing inputField causes visualforce page to error out

I have created a page and am currently converting the page to use bootstrap. I was using an apex:inputField and nothing is wrong except that inputField does not accept disabled as an attribute. So I ...
0
votes
1answer
14 views

getSalesforceBaseUrl() in a Custom Email Template

I've created a Custom Email Template. In the HTML Email Content, a few fields are displayed and I've created a button with a link <a ...
0
votes
0answers
6 views

Setting a Date field with CreateSalesforceObject() in ExactTarget

I have an ExactTarget landing page where I create leads and campaign members in Salesforce. On my campaign member creation I need to set a field that is defined as a Date field in Salesforce however I ...
1
vote
1answer
12 views

Communities - Where To Store User Uploaded Files?

I am building a custom communities app where users will configure their profile, and it will be displayed on a public listings page if they opt-in. As an FYI, the public listing page will be hosted ...
0
votes
1answer
17 views

Redirect VF Page after sendEmail

I have a VF page with a submit button, when the user clicks on the submit button it sends an email. I need the page to redirect to a thank you page after they hit submit. I am getting this error: ...
0
votes
1answer
12 views

Enabling External Object Beta in My Developer Org

I would like to enable the External Object Beta in my developer org. Does this require a case with Salesforce support?
1
vote
0answers
19 views

Using Developer Console & Checkpoints to debug w/ unit tests

Is it really possible to use the dev console & checkpoints to effectively debug code via unit tests? It seems like it should be possible, but I've never gotten it to really work for me. Here's ...
2
votes
1answer
36 views

Scaling Images in Visualforce PDFs

In our org, users are able to create PDFs with a logo in the header. We're using renderAs="pdf" to achieve this. The problem is we can't control the dimensions of the logos, so we need to scale them ...
0
votes
1answer
11 views

Dynamic Visualforce Components: is there a smater way to add childComponents?

Playing around with Dynamic Visualforce Components I found it inconvenient to create child elements in such a bulky notation public Component.Apex.OutputPanel getNavPanel1(){ ...
2
votes
2answers
22 views

Hazy password example question - connect to sandbox?

Hi I set up tomgersic's mobile SDK example "HazyPassword" on macBook. How do I update it to have it connect to a sandbox instead? The readme file says "- A Settings screen that allows the user to ...
1
vote
1answer
10 views

Validation rule assistance

I'm looking for input on how to adjust an existing, working validation rule so that it doesn't fire when the running user is a specific Profile. Here is the existing rule: AND( ...
2
votes
0answers
20 views

How to create a persistent list of modified SObjects for later sync to 3rd party system?

Over the course of a 24 hour period, I need to keep some sort of persistent list of contacts that have been updated under certain conditions. I'll populate the list with a trigger that evaluates the ...
0
votes
1answer
17 views

How to get default Task Status and all Closed Status values of Task Object

I have a requirement where I have to get Default Task Status and Closed Status. String defaultTaskStatus; // variable which contains Default Status Set<String> taskClosedStatusSet; // ...
2
votes
0answers
28 views

'Unable to lock row' error when deploying changesets to PROD

I am facing with this weird problem while running test classes or performinh changeset deployment.Many of our tests involve creating Products and Pricebook Entries. In order to use a product in an ...
2
votes
1answer
31 views

use bootstrap tooltip with apex:inputfield

I have a visualforce that I have built using bootstrap 3.2 but I want to enable a tooltip on one of the input boxes. I have not been able to make this work yet. Does anyone know how to do this? I ...
1
vote
1answer
17 views

How to use DescribeSObjectResult to fetch SObject field information

I have a requirement where I've to fetch all 10 fields of a custom Object My_Object__c and store it in a Map<String, String> labelMap // 1st string is the label and 2nd string is the Field Name ...
0
votes
0answers
12 views

Docusign for Salesforce merge field

I'm trying to create a custom field in a Dosusign template that will populate with Salesforce data. I have the "Docusign for Salesforce" plugin installed fine. When I create a new custom field I ...
-1
votes
0answers
11 views

create Folders and can change folder hierarchy by admin when ever needed

creating an folder +folder1 +folder2 After clicking folder1, I want to load folder1 children (subfolder1, subfolder2) want to place documents in the folder -folder1 -subfolder1 Doc1 ...
3
votes
1answer
104 views

Create a Map<string, Set<String>>, where 1st string is the unique value

I have a requirement, where I have to fecth record and put it in a Map. I have a custom Object My_Object__c and it has 2 fields : child_Name__c and Parent_Name__c. What I did, I query from the ...
0
votes
1answer
30 views

Change color of custom button based on field value

I am trying to do the same thing as this question (set the color of a custom detail page button): Changing the color of a custom button but I want the set the value based on the value of a field in ...
2
votes
0answers
14 views

new app still counting against object/tabs

New managed package just passed security review, tried installing into a test org and it still counts against object/tab limits in the org. Also still getting the notice when installing the app: ...
0
votes
1answer
12 views

How to have lookup field on a Salesforce1 Publisher Action only display records that match the lookup filter?

I'm having trouble in Salesforce1 with a lookup field on a Chatter Publisher Action not respecting the lookup field's required filter criteria. When users are in the Salesforce1 app (iOS or HTML5) ...
0
votes
1answer
14 views

Label not displaying while using Label attribute of apex:selectRadio. Any suggestions please

I am trying to display a radio button along with a label just as given below. (Radio button) Account Number For that, i have used the following code snippet but the label "Account Number" does not ...
1
vote
2answers
31 views

Unit Testing Involved Multiple Objects

I used a static resource to perform a unit test on the loading of a sample contact. Previously, code coverage was at 0% and improved to 1% after running the test. My code is as follows: public ...
1
vote
1answer
29 views

Formula using INCLUDES function - how to reference merge field?

I need help creating this formula field. I am getting this error: 'Incorrect parameter type for function 'TEXT()'. Expected Number, Date, DateTime, Picklist, received Text (Related field: Formula)' ...
2
votes
2answers
65 views

<apex:input type=“date”> is not working in Mozilla

I'm using <apex:input> tag to display date. It's working fine in Chrome but it's not working in Mozilla. <apex:input type="date" id="dateid">
0
votes
1answer
17 views

Updating existing subscribers

There are two Exact Target examples that I would like to implement in a landing page together. The first examples involves the Web Collect demo found here: ...
6
votes
0answers
32 views

Get Count of ALL Records (All Objects) in Recycling Bin

Looking for a SOQL query (or some other method) to get a count of records in my orgs recyclying bin. I have seen other solutions posted suggesting to use the IsDeleted = TRUE and ALL ROWS to the SOQL ...
2
votes
1answer
26 views

How to preserve relationships upon data import?

I've set up lookup and master-detail relationships between objects in Salesforce, and I have SQL-exported CSVs of legacy data which mirror these relationships. How do I preserve the existing ...
1
vote
1answer
23 views

How to Auto populate account name

I'm stuck and want a way to solve a problem . The requirement is when i click on custom button it should redirect me to the Contact page WITH auto populate Account field. I've reach with the redirect ...
2
votes
1answer
24 views

problem creating a dependent picklist

I want a user to be able to firstly select a value from a picklist and then to be able to select values in a lookup. For example, if the user selects the value "campaign" from the lead source ...
0
votes
0answers
36 views

Principles of Salesforce for B2B Orgs [on hold]

Below is a list of some very basic Salesforce.com principles that I think should apply to most for-profit B2B instances where the primary user is the sales staff. I've seen a lot of implementations ...
1
vote
1answer
28 views

Account Contact roles, pre-populating opportunity /contract contact roles

i am hoping you can help,i am wondering is there a way i can populate the account contact roles, and it populates the contract,opportunity contact roles automatically For example In the scenario ...
0
votes
0answers
15 views

Has anybody worked on alternate solution for Account Team Members triggers?

I have a requirement to capture the Account team changes and process them. Unfortunately i can't write a trigger on AccountTeamMember. Is there any alternate solution ?
5
votes
0answers
29 views

Create Community User through REST API

I am using nForce libaray with node.js. Everything's go right and we perform CRUD on Case object. However when we would like create User using an external account with "Delegated External User ...
1
vote
1answer
30 views

How to create a file inside a folder in google drive?

I am able to create a file in Google drive from salesforce with the below code: Http http = new Http(); HttpRequest req = new HttpRequest(); req.setMethod('POST'); ...
1
vote
0answers
16 views

How to prevent Stored XSS? [on hold]

After check marx security scan i'm getting stored xss error. <apex:outputText value="{!wrk.html_description__c}" escape="{!show}"/> Public List<Workspace__c> workSpaceList {get; set;} ...
3
votes
1answer
19 views

Unmanaged package is taking too long time to install

I have a un-managed SFDC package which I want to install on a highly customized SFDC org ,this org already has 5 other packages installed. None of the package components is overlapping with existing ...
0
votes
0answers
3 views

ExactTarget - matching a SentEvent to the Sendable Data Extension that was used?

When looking at the Send Event from the SOAP API - you get all of the lists that were used to generate the send. If the send was done via a Sendable Data Extension - this is set to the All Subscribers ...

15 30 50 per page