Tagged Questions

A proprietary Java-like programming language for the Force.com Platform. Note: This is unrelated to Oracle's Application Express platform. Use the oracle-apex tag for that.

learn more… | top users | synonyms

7
votes
2answers
88 views

Building OLAP style applications with SalesForce/Apex

We are considering moving a planning and budgeting app to the Salesforce platform. The existing app is built on a dimensional data model, and has extensive ad-hoc query capability implemented through ...
6
votes
3answers
3k views

How to avoid MIXED_DML_OPERATION error in Salesforce tests that create Users

Sometimes in Salesforce tests you need to create User objects to run part of the test as a speciifc type of user. However since the Salesforce Summer 08 update, attempts to create both User objects ...
6
votes
4answers
13k views

Salesforce - How to Deploy between Environments (Sandboxes, Live etc)

We're looking into setting up a proper deployment process. From what I've read there seems to be 4 methods of doing this. Copy & Paste -- We don't want to do this Using the "Package" mechanism ...
5
votes
6answers
2k views

How do I detect the environment in Salesforce?

I am integrating our back end systems with Salesforce using the web services. I have production and stage environments running on different URLs. I need to be able to have the endpoint of the web ...
4
votes
3answers
123 views

Organizing Apex Classes under Namespace

Is there any way in Salesforce to group apex classes under a package or namespace? Can we use managed package for internal organization purpose?
3
votes
2answers
122 views

How do I avoid STANDARD_PRICE_NOT_DEFINED when unit-testing an OpportunityLineItem in Apex v24.0?

Apparently a new feature of the Spring '12 / v24.0 release of Apex in Salesforce.com is that unit tests no longer have access to 'real' data -- thus (if I'm understanding the change correctly) a SOQL ...
3
votes
2answers
411 views

Create multiselect lookup in salesforce using apex

I want to create a multi-select Contact Lookup. What i want : When user clicks on a lookup then he should be able to select multiple contacts from that. What i have done: I have created an object ...
3
votes
3answers
420 views

Session Management in salesforce

We are trying to build one simple website using force.com sites.Here User logged into website and need to perform different actions by moving to different VF pages. We are facing a Problem to ...
3
votes
1answer
437 views

Synchronize SalesForce calendar with Google Calendar

Does anyone know how to synchronize SalesForce calendar with Google Calendar without using 3rd party apps or services like Appirio? Any guidance or links to websites would be appreciated, preferably ...
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
3answers
4k views

Salesforce (VisualForce): How to test for no records returned in 'apex:repeat' statement?

I am trying to figure out how to test fields (included within a apex:repeat) to see if they are blank, or null, and if so display some alternate text (Ex: No records to display) in the table instead ...
2
votes
1answer
48 views

Does salesforce Apex support inheritance of static methods?

public virtual class parent { public static void doStuff(){system.debug('stuff');} } public class child extends parent{} When I call child.doStuff(); I get this error: Method does not exist ...
2
votes
2answers
25 views

How to send an email to an arbitrary address and merge in Lead values?

I need to send an email: to an arbitrary email address using an email template merging in values from a Lead The code would look something like this: Messaging.SingleEmailMessage msg = new ...
2
votes
1answer
67 views

How to convert Salesforce rich text editor to a “full mode” editor?

With the spring '12 coming over these days, the old "hack" to convert the rich editor will not work any more. What can be done to retain full CKEditor functionality after spring 12?
2
votes
1answer
42 views

How do I use a single regular expression to strip characters from matching substrings in Java/Apex?

I'm searching for state abbreviations in a string. Here's an example input string: String inputStr = 'Albany, NY + Chicago, IL and IN, NY, OH and WI'; The pattern that I'm using to match state ...
2
votes
2answers
71 views

how do we schedule a class to run every 15 mins in salesforce

I am trying to schedule a class to run every 15 mins. i know we can set in salesforce for every hour, but is there a way to reduce the granuality to 10-15 mins. global class scheduledMerge ...
2
votes
1answer
45 views

Permissions Enforced on Salesforce Apex WebService

After reading this tidbit, it would seem that the current user's permission would be irrelevant. However when calling this method as anyone but a user with the Administrator profile, it throws an ...
2
votes
2answers
93 views

How can I stop a managed trigger from executing while running a test class?

Usually, when a trigger runs, we check what kind of a profile the user has, and if it's the kind where we don't want the triggers to run, then we exit the trigger before running any other code. ...
2
votes
1answer
48 views

Making APEX trigger from webservice - is it possible?

i,m trying to write a trigger in SalesForce Opportunity wich have to send the updated StageName to external webservice using predefined username and password. here is sample code: trigger ...
2
votes
1answer
103 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 ...
2
votes
2answers
138 views

How to implement “Save & New” functionality in a VisualForce Page

I know that this is how to save a record <apex:commandButton action="{!save}" value="Save"/> Now I want a button to save the current record and reset the form to input another record. ...
2
votes
1answer
125 views

How to open multiple windows at a same time in salesforce?

I want to open 2 salesfroce reports at a same time when clicking on a custom formula field. I used hyperlink function in my formula field but in that i call my Visualforce page and that i will ...
2
votes
1answer
106 views

how does upsert with external id work?

how does upsert work? my understanding is that it checks if there is a record with unique id and if its available then it updates that record and if its not then inserts it. Am i right? I seem to ...
2
votes
1answer
82 views

For automatic C# code generation: ApexSql Code or Entity Framework?

I want to generate C# code automatically, for data access in my asp.net projects. Which of the approaches (also why) is more suitable for automatic C# code generation: Entity Framework or ApexSql ...
2
votes
3answers
230 views

Combine multiple objects within a list

I'm looking to create a single list of records of various sObject types using apex to display to a custom visualforce page. I'm wondering if there is a way to combine multiple objects (case, ...
2
votes
1answer
84 views

Pass parameter and use custom attributes?

I have the following code in my view: <apex:commandLink data-role="button" action="{!someAction}"> <apex:param name="someVar" value="someVarVal"> </apex:commandLink> The code does ...
2
votes
1answer
298 views

Oracle Apex submit when 'enter' pressed

I have an text field in an oracle apex form. A user can type in a search query and hit the "Search" button to submit the page. I also want to allow the user to just be able to hit the enter key to ...
2
votes
1answer
282 views

Reference a remote site setting URL in Apex class?

I have a webservice class that will be in a managed package and distributed to multiple clients. The class currently has a variable with the hardcoded value of the server it's hitting. The problem: ...
2
votes
1answer
3k views

How to get in a Visualforce page controller a value from a custom component controller?

I'm trying do develop a visualforce custom component which is an entity chooser. This custom component displays a UI which helps browsing some records. It's possible to select one record, and I'd like ...
2
votes
1answer
2k views

Salesforce Apex Triggers - How to check if field is included in update trigger?

I would really appreciate if someone can guide me to check if a particular field is included in update call inside a before/after update trigger. Many thanks.
2
votes
5answers
2k views

Salesforce - Is it possible to display image file from ContentVersion to custom visualforce page?

I wrote one simple Visualforce page that let user upload an image file then save the file to ContentVersion object. Now I want to display the saved image in my custom visualforce page. Is it even ...
2
votes
3answers
929 views

Where do I add a trigger for “Notes and Attachments” in salesforce.com?

I cannot find where in the salesforce.com UI I can add a trigger on a file attachment. I can find triggers on almost everything else, but attachment seems to be missing from the list (even when I ...
2
votes
1answer
2k views

How to convert SET to array in APEX?

I have map with key and value and my goal is to get list of 'key'. I am thinking to get it to the array or List. Got to the point where I have key values in the SET but haven't figure out how to ...
2
votes
2answers
1k views

How to refer html element id specified in visualforce and pass onto javascript function?

I have apex tag that generate input text field. <apex:page id="my_page"> <apex:inputText id="foo" id="c_txt"></apex:inputText> </apex:page> When someone clicks this ...
2
votes
4answers
8k views

Examples for Apex Programming [ salesforce.com platform ]

I m creating an application in which i need to use Apex programming, and i have java development background. So what i need is, examples Apex programming [ salesforce.com ] where i would be ...
2
votes
1answer
219 views

Visualforce and VPN

I'm looking to integrate my Salesforce implementation with an external database. I know that in most circumstances I would use Visualforce with an Apex controller/extension to access the data, however ...
2
votes
1answer
676 views

Get the data type, not display type, of a Salesforce.com field from Apex

I need to access the data types of the fields in a Salesforce.com object in order to identify each phone, fax, email, and mail field in an object. I've done this from SFDC web services with the ...
2
votes
1answer
257 views

Does any one know of any APEX refactoring tools?

The company that owns the company that I work for has recently decided unilaterally that the salesforce.com and force.com platform are where we are headed. Currently, we're a C# .NET shop and we ...
2
votes
4answers
2k views

Force.com IDE - Eclipse Plugin doesn't work?

I'm new to Apex and have just downloaded Eclipse to get to work Eclipse SDK 3.3.2 I've followed the instructions on http://wiki.apexdevnet.com/index.php/Force.com_IDE_Installation_for_Eclipse_3.3.x ...
2
votes
2answers
1k views

Salesforce.com - Why uploading of Apex class is not working?

I have an Apex class (controller) originally developed under Developer Edition and need to upload it to production which is Enterprise Edition. The upload fails with following message ...
1
vote
2answers
26 views

Why are HTML emails being sent by a APEX Schedulable class being delivered with blank bodies?

I have an APEX class that is used to send an email out each day at 7PM: global class ReportBroadcaster implements Schedulable { global ReportBroadcaster() { } global void ...
1
vote
2answers
45 views

System.NullPointerException: Attempt to de-reference a null object

I have to create a new object and copy all the fields form the old one to a new one and it is a child to opportunity. The copyfields is a method that copies the fields from one object to another and ...
1
vote
2answers
40 views

Retrieve salesforce instance URL instead of visualforce instance

From a visualforce page, I need to retrieve our organization's salesforce instance's URL, and not the visual force URL. For example I need https://cs1.salesforce.com instead of ...
1
vote
1answer
46 views

How can I unmarshall XML Schema values in Apex?

I'm consuming a SOAP web service from Apex that salesforce's SOAP stack doesn't support, so I'm treating it as XML over HTTP. I have XML Schema values, such as the dateTime 2008-03-30T00:00:00-05:00 ...
1
vote
2answers
46 views

Have a command button as a part of output text

I have objects of wrapper class in a list and in my Vf page i am checking if the object of the wrapper contains null, if it has null then i am displaying 'Free' else displaying the appointment ...
1
vote
1answer
23 views

How To Capture ISP Name?

How do I capture the user's ISP name in Salesforce.com? The solution can be in JavaScript of in Salesforce.com such as Apex/VisualForce Pages. Example of a website which captures the user's ISP name ...
1
vote
1answer
40 views

Clone a opportunity and its lineitems programatically in salesforce

I have a scenario where i need to clone a opportunity and its lineitems when the contract End date is today. The opp line item has field called Product_Family_c. i would have to clone only those opp ...
1
vote
2answers
42 views

How do you create a deconstructor (or similar) in APEX that runs right before an object is destroyed?

My application has many aggregate fields that need to be updated when any related record is changed, added or deleted. The relationships and calculations are somewhat involved, so I created a class ...
1
vote
1answer
54 views

SOQL - Querying for a list of users the current user is following

In my app I display a list of the current users. I request it like this: Attempt 1 List<User> Following = [SELECT Id, Name, SmallPhotoUrl FROM User WHERE Id IN ( SELECT ParentId ...
1
vote
1answer
27 views

Writing an XML File on Salesforce

I need to perform a custom xml format from a set of objects, and download it into the client. All the xml conversion is implemented in an string, but i couldn't find a way to make it downloadble

1 2 3 4 5 6