• Roy Singh
  • NEWBIE
  • 10 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 4
    Replies
Hi All,

how can we send email alert to all the team member if case is assigned to their Team ?

Thanks,
Raghvendra
Hi All,

How can customer community user post on chatter ?
i checked all material and found that community don't have access on chatter.
Requirment: i have to send email notification to all group team member whenever a customer community user assign team on case from community page?

Is there any way  also if we can show bell notification from apex class?


Thanks,
Ketul
Hi Guys,

I have embedded a lightning component in a visualforce page so that this vf page can be called from List VIew in Lightning When the action is completed i want to redirect to List View how can i achieve this. I have tried using events but vf page doesnot support events

Thanks in Advance
Hi All,
i want to write trigger on phone fields,
supposs user enter phone number like this:
004466554412-user input
its should be change like this:
+44 66 55 44 12
00 converts in +
after 2 digit its should be space


Thanks
Hi 

public class DeactivateInactiveUsers implements Schedulable {
    public void execute(SchedulableContext context) {
        User[] selectedUsers = [SELECT Id FROM User WHERE IsActive = TRUE AND Id NOT IN (SELECT UserId FROM LoginHistory WHERE LoginTime = LAST_N_DAYS:8)];
        for(User record: selectedUsers) {
            record.IsActive = false;
        }
        Database.update(selectedUsers, false);
    }
}

Thanks
Hi all,
How we can achive this ?
When using the send email action on case, the last template used by the current user should be auto selected for efficiency purposes

Thanks,
ketul
Hi Guys,
how can we achive this?
When using the send email action on case, the last template used by the current user should be auto selected for efficiency purposes.

Thanks
Hi all,

my problem is i have one last update date field.
i want to update this field on case record whenever i click on new task,log a call and new events on case record and also whnever i change status field and priority field it should be updated.

Thanks
Hi All,

I need to write trigger on contact object.
My problem is whenever i change the account name from in existing contact record then all account name should be changed related to contact object record like case and task. In case record and task record account name should be changed whenever i change account name on contact record.

Thanks,
Hi All,

I need to write trigger on contact object.
My problem is whenever i change the account name from in existing contact record then all account name should be changed related to contact object record like case and task. Example Case record and Task record account name should be changed whenever i change account name on contact record.

Thanks,
Hi All,

Could anyone help me to write email validation.

Below these Email format should not be included
Invalid email addresses
Abc.example.com (no @ character)
234567890123456789012345678901234567890123456789012345678901734+x@example.com (too long)
john..doe@example.com (double dot before @)
example@localhost (sent from localhost)
john.doe@example..com (double dot after @)
john..doe@example.com

Please help me guys.
​Thanks in advance
Hi All,
i want to write trigger on phone fields,
supposs user enter phone number like this:
004466554412-user input
its should be change like this:
+44 66 55 44 12
00 converts in +
after 2 digit its should be space


Thanks
Hi 

public class DeactivateInactiveUsers implements Schedulable {
    public void execute(SchedulableContext context) {
        User[] selectedUsers = [SELECT Id FROM User WHERE IsActive = TRUE AND Id NOT IN (SELECT UserId FROM LoginHistory WHERE LoginTime = LAST_N_DAYS:8)];
        for(User record: selectedUsers) {
            record.IsActive = false;
        }
        Database.update(selectedUsers, false);
    }
}

Thanks
Hi all,
How we can achive this ?
When using the send email action on case, the last template used by the current user should be auto selected for efficiency purposes

Thanks,
ketul