• ThunderBolt
  • NEWBIE
  • 20 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 0
    Replies
Hello,

I need to send email notifications for owner and opportunity managers using flow.

In email action, I added 2emails with coma: {!$Record.Opportunity_Account_Manager__r.Email},{!$Record.Owner.Email}

But I'm getting the below warning message.
User-added image
P.S: no errors when added separately.

Help me here. Thanks!
Code I wrote:
apex:outputPanel rendered="{
        !OR(
            AND(
                Preferred_Language__c == 'English',
                Case_Category__c != 'Bug'
            ),
            AND(
                Case_Category__c == 'Administration',
                OR(
                    Case_Sub_Category__c == 'Admin',
                    Case_Sub_Category__c == 'New User',
                    Case_Sub_Category__c == 'Password Reset',
                    Case_Sub_Category__c == 'Other'
                )
            )
    )}"> </apex:outputPanel>

But this is not working. Please Suggest
 
Hello,

I'm new to salesforce. Please help me understand the structure

1. How is (QA)Testing done?
2. Diff between developer sandbox vs sandbox full. 
3. Which environment will be used to develop the code?
4. will each person in the development team will have a different developer sandbox?
5. How migration is done?
6. how a complete project/team structure will be in salesforce.(Admin vs Developer)

Thankyou!