• nandhini vasudevan
  • NEWBIE
  • 10 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 2
    Replies
Hello everyone,

whenever the user clicks send email button email will be sent to the customer but before that, they need to preview the email. Is there any way to preview the email before sending using flow?  It would be really helpful if anyone could provide your suggestion. Thanks in advance.
Hi 

can anyone help me to write this formula
Req: I need to check the oldowner of account is equal to account relationship owner
Hi

I have created a flow and it should work only for particular record type in case. So i have given like below screenshot. But its not working only for that recordtype(working for all recordtype in case). can anyone tell what mistake i did here User-added image

 
Hi

can anyone tell me how to throw error message in record triggered flow?

Thanks in Advance.
Hi
can anyone tell me how to write a negative and bulk test class for my below code?

@isTest 
public class caseTriggerHandlerTest 
{
    static testMethod void setup() 
    {
              
       Account MyAccount = new Account();
        MyAccount.Name='Test Account';
        insert MyAccount;
        
        Contact MyContact = new Contact();
        MyContact.Lastname ='Test contact';
        MyContact.AccountId = MyAccount.Id;
        insert MyContact; 
      
        Case caseObj = new Case();
        caseObj.AccountId = Myaccount.Id;
        caseObj.Status = 'New';
        caseObj.Country__c = 'Chile'; 
        insert caseObj;
    Test.StartTest(); //to refresh the governor limits
        
        caseObj.Status = 'Closed';
    
        Test.StopTest();
           }
}
Hi

I have created a flow and it should work only for particular record type in case. So i have given like below screenshot. But its not working only for that recordtype(working for all recordtype in case). can anyone tell what mistake i did here User-added image

 
Hi

can anyone tell me how to throw error message in record triggered flow?

Thanks in Advance.