The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
12 views

Display text on hover over Custom Console Component [duplicate]

I have a Custom Console Component(displayed in console) which when clicked on opens a vf page. I want to display text "Test" whenever user points its mouse over this component. How can i do this? This ...
5
votes
1answer
62 views

How can I capture Heap Dumps for other users?

Some of my users are experiencing a strange behavior that I can't yet reproduce in a Sandbox, so I'm trying to monitor the bug more closely in our production database. Since I'm in a production ...
5
votes
2answers
79 views

Inconsistent logging output!

I am trying to log some values for general testing and I am getting some really strange behaviour. Some of the logs are just not printing. This is what is happening: I am pressing a button that runs ...
6
votes
2answers
106 views

Force a Unit Test to run immediately inside Salesforce Web UI?

Is there a way to force a unit test to run immediately? You used to be able to go to App Setup > Developer > Apex Classes > [ClassName] > Run Test button. This used to begin processing a unit test ...
15
votes
1answer
401 views

Developer Console - Issues in Chrome Spring '13?

Has anyone else been experiencing issues with the Developer Console simply sporadically erroring out in Google Chrome since the new release? Anything I can do to fix this? EDIT: I tried Peter's fix ...
7
votes
4answers
164 views

Organization Administration Locked…?

After having my Developer Console not be able to save a class that I edited, I faced this error message when trying to edit/save the class directly in the browser: Organization Administration Locked ...
5
votes
2answers
78 views

System.UnexpectedException: User defined type found in unsupported code path

I have a complex codebase containing numerous custom classes, subclasses, inner classes, and enums. (I specifically mention this, as I have a hunch the enums are the cause, but I can't replicate in a ...
3
votes
1answer
64 views

How can I speed up Developer Console?

Since Salesforce have moved their test execution to be asynchronous in Spring '13 we are forced to use the Developer Console to see Code Coverage for a single test class. My issue with this is that ...
9
votes
2answers
242 views

How to efficiently profile Visualforce components and their controllers?

I have a quite complex Visualforce component (edit grid) that is running to slow (2-4 seconds to display) When I say complex I mean: The Component itself is calling other components Many thousand ...
5
votes
2answers
186 views

Schema.getGlobalDescribe returning different data from Developer Console

I'm trying to see if an object exists using the following code: public with sharing class GenericUtils { public static Boolean doesObjectExist(String objectName) { Map<String, ...
1
vote
2answers
35 views

How can I refresh the log list in the Developer Console?

My latest debug log always seems missing in the Logs browser when I am working in the Developers Console. Is there a way to force the list of logs to refresh? The only workaround that seems to work ...
1
vote
3answers
137 views

On upgrade to Salesforce 26.0 Api, Test Case is not pulling any data in Console

I am running a test case , I have upgraded my Salesforce Sandbox to latest version Api (26.0). Running SOQL individually give me results but while using Console I ran in error where SOQL comes out ...
3
votes
1answer
164 views

Why are code coverage results different in IDE and developer console?

The Apex coverage results for unit tests in the Force.com IDE and the developer console are very different. I just ran 2 tests in both and got: test 1 IDE: 75 lines not tests, 68% covered Developer ...
1
vote
2answers
513 views

no viable alternative at character ' ' What does this mean?

There is a method in a class which i am trying to call from developer console. Here is the definition of the class public static void ruleEngine(String rule, Date eventdate, String area, Boolean ...
2
votes
1answer
100 views

Creating a Class in Dev Console Gives a 500 Error

I am able to create the class in my browser and then edit it in the dev console, but I'm not sure why it won't let me create a class directly from the console.
0
votes
1answer
171 views

Developer Console Takes Lot of Time to load

Anybody has any idea why developer console of mine taking very long time to load after winter 13 release ?
-1
votes
2answers
140 views

Migrating the custom objects fields [duplicate]

Possible Duplicate: Copying metadata and code from one Production org to another Can anybody tell me how to migrate the custom objects fields etc into a developer environment from sandbox. ...
4
votes
3answers
73 views

How to compare logs in the console?

Is there a way to compare two logs in the console? I'm following the tutorial in the Apex Workbook and at after executing two anonymous pieces of code it says to compare the two execution logs. I ...
1
vote
3answers
97 views

Using the ApexCSIAPI that backs to Force.com Console to pull data

When the Force.com/Developer Console is open and checking for updates I can see it polling the server with Ajax POST calls to https://instance.salesforce.com/_ui/common/apex/debug/ApexCSIAPI. Has ...
5
votes
3answers
187 views

Developer console causes internal system error

I've noticed over the last week or so that when I have the developer console open and am working on my developer orgs that my @RemoteAction methods are returning an internal error from SFDC. Does ...