The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
25 views

Centralized Apex Batch Management with a constantly running worker batch class

Just assume you had an app that would have to process huge amounts of records in an org in multiple ways each day. For each "way" you have a separate Batchable class and those are triggered ...
3
votes
2answers
51 views

How to best structure code so it can be run synchronously and asynchronously(in Batch)

This question is somewhat related to my other open question on the asynch/synch topic. Assume I would have an algorithm that could tell me that for a given customer org (data volumes and other ...
2
votes
2answers
42 views

Button redirects page before async call is finished in another field

I am really confused as to how to solve this issue I have on a visualforce page. Basically I have a pageblock table with some Opportunity Products displayed. On the onchange event of the fields in the ...
2
votes
1answer
45 views

Heuristics to decide if to run an operation sychronous or asynchronous

Im our app we recently had to switch many operations from short running synchronous calls to asychronous Batch or future calls. It helps us overcome the many limits but also introduces many other ...
4
votes
2answers
177 views

Rerender apex:details after DML async method call

I have found a strange behaviour and I can't find why does it happening. I have custom object Test2_c with custom text field Status_c. I want to change it's status asynchronously, so I prepare a VF ...
0
votes
1answer
147 views

ActionFuntion Rerender in VF page leads to sudden “Insufficient Privileges” - even as Admin

To make a VF component appear to load faster I used an actionFunction to load it only after the rest of the pages has loaded (jquery's document.ready). After doing this my component showed an ...
1
vote
1answer
326 views

Examples of using queryAsync in SOAP API?

I've been looking around online for examples for using queryAsync() in the SOAP api, but I can't seem to find any. Can someone using Async calls using the SOAP WSDL api in C#?
3
votes
3answers
2k views

JavaScript Remoting on Standard Page Layout

I have a couple of JavaScript remoting functions used to count records and to display that count to the end user. The JavaScript remoting functions are on a Visualforce page, and the Visualforce page ...
7
votes
2answers
311 views

Batch Apex in AppExchange package and orgs with related triggers that call @Future methods

Here's the problem: when an org has a trigger that calls an @Future method, any batch Apex that fires that trigger will fail, since you cannot call an @Future method from an @Future method OR from ...