Unanswered Questions
40
votes
0answers
569 views
When are the Queueable/Batchable penalties going to be enforced?
According to The New Apex Queueable Interface, from October 2014, we were told that chained Queueable calls would be exponentially delayed up to 64 seconds, chaining Batches would be exponentially ...
18
votes
1answer
238 views
Parallel Execution of JavaScript remoting calls
I was hoping to be able to fire off multiple JavaScript Visualforce remoting calls in parallel and have the execute simultaneously, and for me to deal with the responses asynchronously.
Whilst in ...
18
votes
2answers
265 views
How to know if a field is part of a compound address field and thus is not permissionable
I am working on a class that dynamically created FieldPermissions records for a permission set. This is working fine, except when it comes to standard compound address fields. When you attempt to ...
14
votes
1answer
305 views
Maximum number of collection items that can be iterated in an iteration component limit in salesforce
As per doc Visualforce Limits
Maximum number of collection items that can be iterated in an
iteration component such as <apex:pageBlockTable> and <apex:repeat> -- 1,000
1,000 is ...
13
votes
0answers
65 views
How does Salesforce determine where to apply the “*** Skipped X bytes of detailed log” section in a log
Firstly, this question isn't about how to access missing log content when a *** Skipped 53353122 bytes of detailed log style message is encountered. That is covered in another question and resolves ...
13
votes
0answers
252 views
Batch start CPU timeout - What influences start() post-processing?
We're experiencing a very annoying issue with a Batch job processing "Large Data Volume" (1.5M records over a table containing 4.5M records). Our batch start method last statement is: return Database....
13
votes
1answer
564 views
deserializing JSON to object: different behavior in unit test vs API?
So let's say I've got a class that looks like this:
public class APIParams {
public String name;
public String category;
public Boolean taxable = false;
}
Then I have a ...
13
votes
1answer
706 views
Salesforce1 and HYPERLINK() showing raw html
Has anyone found a way to have a field, which is a formula field that uses HYPERLINK(), to display correctly in the Salesforce1 APP?
Currently in the browser based Salesforce1 it functions correctly, ...
12
votes
2answers
736 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 ...
11
votes
1answer
65 views
Do promises work in Lightning?
I wrote some code that uses promises. It seems that in the Promise environment, I can queue an action, and the action callback is never called. In the callback environment, when I queue an action, ...
11
votes
0answers
75 views
String literals with {} braces may get mangled in Lightning JS
This has already been reported - I'll add my colleague's case number for it when I have it available - but I don't see it on StackExchange so I thought I'd post here.
Basically we discovered while ...
11
votes
0answers
184 views
Records not being indexed or found with global search
I've come across an issue where Salesforce doesn't seem to be indexing records in a custom object that are created through the REST API. When searching for a record name or external ID no results are ...
11
votes
2answers
376 views
Is forcetk accessible in Communities
I am using forcetk to upload files (as Attachment records) in a VisualForce Page and it works fine. But when I access same page in a Community, I am not able to upload the file as I am getting the "...
10
votes
0answers
267 views
Lightning Async Action calls versus JS Promises
The Lightning Developer Guide states:
All the action calls are asynchronous and run in
batches.
If this is the case, does the framework have any concept resembling JavaScript promises?
It ...
10
votes
0answers
130 views
Mini Page Layout Hovers in Managed Package
Has anyone using the mini page layout popup technique listed here in a managed package had the package rejected in security review because of it?
This is obviously an unsupported technique, but given ...