Apex · Integration · REST · Salesforce

Dynamically Changing Filters in Reports using Analytical API

Scenario :- Let us Assume there are 3  representatives  working under the same territory . Now based on the selection of each representative in VisualForce page , his data should be displayed in the report  . The Reports and Dashboards REST API gives you programmatic access to your report and dashboard data and to visualize the  data.… Continue reading Dynamically Changing Filters in Reports using Analytical API

Apex · Salesforce

Implementation of Gantt Chart using Google Charts

Motivation: When you can’t build the desired chart using Visualforce, you can use the vast Google Charts API. What is Gantt Chart: A Gantt chart is one of the most popular and useful ways of showing activities (tasks or events) displayed against time.On the left of the chart is a list of the activities and… Continue reading Implementation of Gantt Chart using Google Charts

Lightning · Salesforce

Implementing Lodash in Salesforce

Recently in my project the requirement needed use of large number of arrays. Initially the thought was to iterate over the array elements using for loop, resulting use of large number of for loops and therefore making the overall process slow. So in search of an alternative found a better approach using the JavaScript library called Lodash.… Continue reading Implementing Lodash in Salesforce