Tagged Questions
2
votes
2answers
95 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
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.
1
vote
2answers
1k views
Elementary Apex Trigger Logic Breakdown
I'm trying to learn Salesforce.com's Apex programming language and I have an example of some code here that comes from the book "Development with the Force.com Platform" by Jason Ouellette. I'm still ...
1
vote
2answers
2k views
Salesforce: Trigger that fires off a Workflow rule has stopped working - any ideas?
So in one part of our customised Salesforce system, the following happens:
a trigger changes the value of a picklist on a custom object
a Workflow rule detects that change and fires off an email.
...
0
votes
1answer
34 views
Creating a S3 Bucket and adding Task records in S3 from Salesforce trigger
I am attempting to add Task objects/records into AWS S3. I have installed Force.com for Amazon webservices.
I wrote the following trigger code
trigger S3Insert on Task (before insert)
{
Task[] ...
0
votes
2answers
124 views
Salesforce: Can I associate a completion of a task with a field update?
I'm trying to see if it's possible for a field in Opportunity to be updated (a checkbox to be checked true) when someone completes a related task. Is there a way to do this?
0
votes
1answer
190 views
Bulk Before Delete Trigger (Too Many Soql Statements) Salesforce.com
So i have no idea why this is, and i don't understand it.
I have a bulkified trigger that uses maps in order to avoid running into SOQL governor limits. This trigger also uses static class variables ...
0
votes
1answer
63 views
How do I update a class variable from a trigger in Apex?
I've declared a class with a public variable LPAssign. I wanted to have an initial value of 1, which would then update every time a trigger is run.
Here's my class:
public class LP {
public ...
0
votes
1answer
196 views
How can we consume external wcf restfull service in salesforce trigger?
I want to know how to consume external wcf restfull service in salesforce apex class ,so that i will call i class in the triggers for invoking service.
0
votes
2answers
1k views
SalesForce.com - Reporting on approval process workarounds
The problem that I'm trying to workaround is that we cannot report on pending approvals.
I've seen the recommendation that we update fields on the object that is being routed in the action that ...
0
votes
2answers
135 views
Security context in a trigger
I'll start of by saying that I'm a .net guy having to play in a salesforce.com world right now.
My question is this;
Within the context of an pre-update/insert trigger can I set the value of a field ...
0
votes
6answers
2k views
Getting past Salesforce trigger governors
I'm trying to write an "after update" trigger that does a batch update on all child records of the record that has just been updated. This needs to be able to handle 15k+ child records at a time. ...
-2
votes
3answers
61 views
Salesforce: I just hit my server processing time limit
I'm a relatively new developer who uses the Force.com IDE on eclipse.
What are some things I could do to avoid this happening in the future? I heard that using Eclipse might not be the efficient way ...