Want to display more than 10 fields in related lists?
There is a nice hack by Chris Tzompanakis and it is in the link
Have a nice day!
17 Tuesday May 2016
Want to display more than 10 fields in related lists?
There is a nice hack by Chris Tzompanakis and it is in the link
Have a nice day!
01 Friday Apr 2016
If you ever want to print or extract Controlling and Dependent picklist values, you can use the solution highlighted by Kenny Jacobson:
I had to use it in my current project to check the field dependencies for 2 picklist fields and make modifications accordingly.
10 Wednesday Feb 2016
Posted Apex, Uncategorized
inTags
Today, I was working on a requirement which queries public group and sends an email to the users(group members) with an attachment from the custom object record and it was implemented using APEX code. I wanted to test using Execute Anonymous option in Developer Console before I call the code using process builder. When I tried executing it in Developer Console, it was throwing Sending Request – Execution Failed error. I could not figure out the reason for it, but I realised that using workbench to execute Anonymous APEX code is better than Dev Console since your code, results are displayed in the same page and you can set the log level too.
Steps to execute APEX in Workbench:
a. Login to https://workbench.developerforce.com
b. Select Sandbox or Production(obviously, we will test the code in Sandbox first)
c. Then system will ask you to login to Salesforce
d. Once logged in, select “Apex Execute” in Jump to option
e. Paste your code in the text box and click on Execute button.
f. System will show the results on the same page. You can select the appropriate Log category and Log level too.
In the future post, I will write about creating a flow to query the public group based on the name and send an email to the group members(role based members).
09 Tuesday Feb 2016
Posted Apex, Uncategorized
inTags
Recently, I worked on a requirement where in I had to send an email by using APEX and I had to prepare the HTML body within APEX itself. As part of it, there has to be a clickable link in the email which should take the user to the Salesforce record after clicking on it and we should not hardcode the URL in the code.
So, here is the code below to get the logged in user’s URL and concatenate it with the Salesforce record ID:
String u=System.Url.getSalesforceBaseURL().toExternalForm();//this returns the base URL of the Salesforce instance as String.
String ufinal=u+’/’+POId;//POId is the variable that holds Id of the custom object record.
or you can write the above code in one line:
String ufinal = URL.getSalesforceBaseUrl().toExternalForm() + ‘/’ + POId;
08 Friday Jan 2016
Posted Uncategorized
inSince I am on vacation now, I didn’t get chance to write posts and I have got a new custom domain for the blog. It is sfdceverywhere.com, don’t worry getintosalesforce.wordpress.com will still work and you will be redirected to the new site.
I will be coming up with more posts on Salesforce topics once I am back from vacation(during 3rd week of Jan). Until then, bye and take care!
04 Friday Dec 2015
Posted Salesforce admin exam, Uncategorized
inI cleared my Salesforce Admin certification(WI16) last week and here are few tips from my side to prepare for the exam:
Here is the study guide and let me know if you have any questions about the exam.
P.S: Recently, I have gone through this post http://www.merivisblog.com/study-salesforce-admin-exam/ and thought of sharing it, as it could be useful to pass the exam.
There is a nice article by Ben on how to pass your Salesforce certification and here is the link
01 Tuesday Dec 2015
Posted Uncategorized
inI have updated the post(Update lookup field using Process) with the additional information. Please find the link below.
05 Saturday Sep 2015
Posted Uncategorized
inIt is possible to call a flow from APEX class since Summer’14 release with the help of Flow.Interview class. Here is an example below.
Map params = new Map();
params.put(‘RatecardId’, ratecard.Id);//Passing RateCard Id to the flow as a parameter
params.put(‘OptyId’, Optyid);//Passing Opportunity Id to the flow as a parameter
Flow.Interview.Update_RateCard_after_Opty_Creation RFlow = new Flow.Interview.Update_RateCard_after_Opty_Creation(params);//Calling the flow “Update_RateCard_after_Opty_Creation” which is active in Salesforce.
RFlow.start(); //Start method invokes an autolaunched or user provisioning flow
There is an useful article which Andrew has written on the same topic and here is the link http://andyinthecloud.com/2014/10/26/calling-flow-from-apex/
26 Wednesday Aug 2015
Posted Uncategorized
inSuppose, the requirement is to populate the Date field(let’s say Overtime date) on a custom object XYZ from the date time field(let’s say Job Start Date) upon record creation. Create a workflow and trigger it when the record is created on XYZ object. Workflow action will be a field update and it will be DATEVALUE(Overtime__c).
DATEVALUE – This function returns a date value from a date/time field or text expression. Additional points to note:
a. If the field referenced in the function is not a valid text or date/time field, the formula field displays #ERROR!
b.Dates and times are always calculated using the user’s time zone.
Please let me know for any comments/clarification.