Below is the code which sends a Post Http Request and handles the Special or Control characters in Json response while parsing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note:- While using the regex '\\p{Cntrl}' , if the length of the Json response is more than the limit then you may get Regex too complicated Error message in apex class. In this case you can apply regex on substring of a Json string and then join the substring back as shown below:-
Below is one of the example code which helps to get the count of open Task in related Opportunity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This above code helps to get the RelatedTo Id i.e The Opportunity Id to which this task belongs.
similarly, get the parent id by using the following
List<Id> ChildIds = new List();
for (ChildObject chd : ChildList) {
ChildIds.add(chd.ParentFieldname);
}
Code Block 4:-
List<Opportunity> oppList =[
select
id,(select id, WhatID, IsClosed from Tasks),
Open_Tasks__c,Total_Tasks__c
from
Opportunity
where
id in :taskIds];
The above code is the SubQuery which gives us the Number of task records present in that opportunity. (select id, WhatID, IsClosed from Tasks) is the query which gives the task record and important to note here that
"Tasks" is not the Object name, it is the Child Relationship Name.
To get that name, click on Relatedto field in object Task and check the ChildRelationship name.
similarly,
List<ParentObject> ParentList = [
select
id,
(select FieldNames from ChildRelationshipName),
from
ParentObject
where
id in :ChildIds];
For Custom Object, append the ChildRelationshipName with "__r" i.e ChildRelationshipName__r
Well Recently I was figuring it out to send email to a custom object email field through the list view page custom button. On click of the button it should open a small panel to select the Email Template and send it to the selected email.
Hmm pretty cool panel. But how to do it?
This is how I started,
1) Create a global class as follows. (Note :- You need to replace the "Person_Detail__c" object with your custom object and the "Email__c" field with your custom email field)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2) Created a List View button named "Send Email" on your custom object with content source as "onclick Javascript" option
3) Below is the Javascript code for the button. (Note:- In my case I used "Person_Detail__c" as custom object. You need to use your custom object instead of "Person_Detail__c")
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters