function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
pcmca_2007@yahoo.co.inpcmca_2007@yahoo.co.in 

Extension Controller Application

Hi All,

          Can you explain me in which below mentioned scenario extension controller is used:

         

          1) StandaredController with ExtensioController

           2)Controller and Extensioncontroller

 

          Can you also tell me the difference in both Regarding Workflow:

 

          a)When a record is created, or when a record is edited and did not previously meet the rule criteria

          b)Every time a record is created or edited

 

    With Regards

    Prabhash Mishra

cantchanandcantchanand

Hi,

 

U can use extensions in both the cases . With Standrad controller as well as with custom controller also.

 

In workflow..

 a)When a record is created, or when a record is edited and did not previously meet the rule criteria

Comments : In this case it will fire when u insert record and it fire on edit when criteria will not meet

 

Like in Account object I have check  box field I am making criteria when checkbox is true then condition will fire. So once you will check then workflow will fire. after that when you update this record  by other value then worlflow will not fire because That check previous condition  and current condition is true.

 

  b)Every time a record is created or edited

Comments :  In this case it will not check any previous and current value, when u update it will fire.

 

Hope it clear to you..

 

Let me know if you need any help.

 

Thanks

Anand Singh