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?

link|improve this question

Great question and although it looks like you have an answer, I'd recommend using #askforce for twitter questions or go to success.salesforce.com/answers and leverage our community for answers as well. Hope that helps! Nathan – salesforce.com Nov 30 '11 at 15:29
3  
@salesforce.com Coming to Stack Overflow to actively solicit users to your site and away from ours is perhaps not the wisest thing to do. However, we'd be glad if you could join us and answer questions on salesforce here. – yoda Nov 30 '11 at 15:47
feedback

2 Answers

up vote 3 down vote accepted

I don't think this can be done with cross-object workflow, since the WhatId field of a Task is a "polymorphic key". If I'm right, you'll have to use a Trigger on Task.

link|improve this answer
I was trying to avoid writing triggers for it but it looks like it may be the only solution. Thanks – Gibson Nov 29 '11 at 22:43
1  
Cross-object workflow? How is that possible? success.salesforce.com/ideaView?id=08730000000BrrsAAC – sorenkrabbe Nov 30 '11 at 14:59
feedback

As Jeremy said you'll need a trigger, code will look something like (I've not checked field names etc. so treat this as almost-real pseudo code)!

trigger TaskAfterInsertUpdate on Task (after update, after insert)
{
    list<opportunity> liOpportunities = new list<opportunity>();
    list<id> liIDs = new list<id>();

    for(Task sTask : trigger.new)
    {
        if(sTask.Status == 'Complete' && ('' + sTask.WhatId).startsWith('006'))
        {
            liIDs.add(sTask.WhatId);
        }
    }

    for(Opportunity sOppty : [select Id, CheckBoxField__c from Opportunity where Id in : liIDS])
    {
        sOppty.CheckBoxField__c = true;
        liOpportunities.add(sOppty);
    }

    update liOpportunities;
}

Hope this is of some help!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.