Unanswered Questions
46
votes
0answers
706 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 ...
21
votes
1answer
343 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
0answers
123 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 ...
16
votes
2answers
554 views
Maximum number of collection items that can be iterated in an iteration component limit in salesforce
As per Visualforce Limits:
Maximum number of collection items that can be iterated in an
iteration component such as <apex:pageBlockTable> and <apex:repeat> -- 1,000
So normally 1,...
14
votes
0answers
290 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
0answers
221 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 ...
13
votes
1answer
661 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 ...
12
votes
0answers
378 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 ...
12
votes
2answers
817 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
2answers
413 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 "...
11
votes
0answers
919 views
Using apex class as attribute type for component - Summer '14 IDE issue
I have a component that gets an instance custom Apex Class as an attribute, ie:
<apex:component controller="ComponentController">
<apex:attribute name="myAttr" assignTo="{!attr}" type="...
11
votes
0answers
141 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 ...
10
votes
0answers
69 views
How to make script loading in Lightning component really One-Time? [possible bug]
We have a component that is constructed of many smaller components.
Few of these components require jQuery and jQuery-ui.
In following screenshot you can see that jQuery library is loaded 3 times ...
10
votes
1answer
3k views
Issue in parsing JSON when special characters are included
I have a Json file which has some special character as below:-
{
"TXT1": "Tést Data",
"TXT2": "can®."
},
The Special character (é.®) gives me a error BLOB is not a valid UTF-8 string while ...
10
votes
1answer
93 views
How does Salesforce handle Managed Package Licences between Packages?
So I have a managed package we'll call Package Core. It has various components, incl custom fields on Account and Contact. It is licensed by user, and works as expected - no license, no access to the ...