• Melissa Driscoll 14
  • NEWBIE
  • 20 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 17
    Questions
  • 6
    Replies
is there any way to create a pop up notification when an Profile User changes and account owner to a different certain profile

we want to allow this change but we want a notification to pop up.
 

I am not a developer but I am trying: 

Obviously this is worng but any assitance would be greatly appreciated

Class - but i don't have a test class
public class QuoteDescriptionIsNotBlank {
 String.isNotBlank(Quote.Description)   
}

I need the following to be in rows and not columns
<apex:page standardcontroller="Account">
<apex:pageBlock >
<apex:pageBlockSection title="Handoff">
<apex:pageBlockTable value="{!Account.Handoffs__r}" var="h"> <apex:Column value="{!h.Name}"/>
<apex:column value="{!h.Account__c}"/>
<apex:column value="{!h.Opportunity__c}"/>
<apex:column value="{!h.Point_of_Contact__c}"/>
<apex:column value="{!h.Training__c}"/>
<apex:column value="{!h.Training_Notes__c}"/>
<apex:column value="{!h.Data_Migration__c}"/>
<apex:column value="{!h.Data_Migration_Notes__c}"/>
<apex:column value="{!h.Integration__c}"/>
<apex:column value="{!h.Integration_Notes__c}"/> </apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>
User-added image
<apex:page standardcontroller="Account">
<apex:pageBlock >
<apex:pageBlockTable value="{!Account.Handoffs__r}" var="h">
<apex:pageBlockSection title="Handoff" columns="1">
<apex:outputText value="Handoff Name {!h.Name}"/>
<apex:outputText value="Account {!h.Account__c}" />
<apex:outputText value="Opportunity {!h.Opportunity__c}"/> <apex:outputText value="Point of Contact {!h.Point_of_Contact__c}"/> </apex:pageBlockSection>
</apex:pageBlockTable>
</apex:pageBlock> </apex:page>
I want to be able to pick a due date in the task or event and have a number of tasks and events on that date show up .User-added image
What I am being asked is to create a mass email to the contacts associated with the case from a list view.
Reason is if there is multiple cases with the same situation: instead of going into each case to let them know the issue we would like to check the box on the list view and click a button to choose the template. 

I know how to create a list view button but I am not great at writing code. Is there any direction I can go to create a button this would be greatful