• Kirti Deshpande 13
  • NEWBIE
  • 30 Points
  • Member since 2018

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 4
    Replies
Hello Guys,

When i change opportunity status to “closed one” for selected opportunities, On click of save it will update opportunity status as well as Account status as well.
Please tell me how to achieve this.

Thanks in Advance,
Deepu
 
Please explain polymorphic behavior in standard objects with example?
Hi everyone,
this is the logic need to be work on.
I have one custom object Designation.
If type filed is Contract Flow and DocumentAttached  filed is True then HandOff Attached =True, otherwise False
How to implement the code for this.
i took the events as after insert, after update.
if(!mm1.isEmpty()){
                    For(Milestone1_Task__c mm1u: mm1){
                        mm1u.Task_Stage__c = triggerNew[0].Determine_Business_Name__c;
                        if(triggerNew[0].Determine_Business_Name__c == 'Completed'){
                            mm1u.Complete__c = true;
                            mm1u.Complete_Date__c = system.Today();
                        }
                    }
                    mtList.addAll( mm1);
        
                }

 
Hi,
I have a little question,
i create a new clone button on opportunity, but when i use this button to clone a won opportunity (so the opportunity is closed), my apex code put StageName into the first step but the opportunity is still closed.
What should i do? 

Thanks
Hello Guys,

When i change opportunity status to “closed one” for selected opportunities, On click of save it will update opportunity status as well as Account status as well.
Please tell me how to achieve this.

Thanks in Advance,
Deepu