18 12, 2020

Security token in Salesforce

2020-12-18T05:43:22+00:00December 18, 2020|Cloud, Database|0 Comments

|
| ByWebner

How to generate an access token? Step 1: From Setup, enter Apps in the Quick Find box, then select App Manager. Step 2: Locate the OAuth connected app in the apps list, click and select View. Step 3: In the [...]

8 12, 2020

How to call Salesforce API from Postman

2020-12-08T06:04:29+00:00December 8, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

To verify the output of a web service in salesforce we need to connect it with the postman. To connect salesforce with postman we need to follow these steps. Get access token:- To get access token. Click on the authorization [...]

3 12, 2020

Using Elasticsearch in Node.js

2020-12-03T07:21:31+00:00December 3, 2020|Web Development|0 Comments

|
| ByWebner

What is elasticsearch? Elasticsearch is a distributed, open-source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured. Elasticsearch is built on Apache Lucene and was first released in 2010 by Elasticsearch N.V. (now [...]

1 12, 2020

Lightning Web Component (Salesforce)

2020-12-01T05:16:04+00:00December 1, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

LWC is a new programming model leveraging recent web standards. This framework is quite powerful and allows developers to do customization with the best approach. Web Standards and Specialized services like Base Lightning Components, Lightning Data Service, and User Interface [...]

27 11, 2020

Azure Event Hubs

2020-11-27T06:44:09+00:00November 27, 2020|Database, Web Development|0 Comments

|
| ByWebner

Introduction: Event Hubs is a real-time data ingestion service that is fully managed, simple, scalable, and trusted. It can stream, process, and receive millions of events per second from any of the sources, which builds data pipelines that are dynamic [...]

25 11, 2020

Aura components vs Lightning web components

2020-11-25T06:33:17+00:00November 25, 2020|Web Development|0 Comments

|
| ByWebner

At the beginning of the Salesforce Development times, developers used VisualForce, which is an HTML Tag-based mark-up language to develop their Visual Force web pages and Apex to control the internal logic. But these HTML based Visual Force standards were [...]

23 11, 2020

Internationalization / Localization in Laravel

2020-11-23T06:26:22+00:00November 23, 2020|Web Development|0 Comments

|
| ByWebner

Laravel has made it convenient for the developers to create multilingual websites by giving the developer community an easy way to retrieve strings in various languages. These strings are basically stored as constants in the resources/lang directory within our project. [...]

20 11, 2020

How to create an event in Laravel

2020-11-20T06:16:07+00:00November 20, 2020|Web Development|0 Comments

|
| ByWebner

Laravel events provide an observable functionality, allowing you to subscribe and listen. Events are stored in the app/Events directory and their listeners are stored in the app/Listener directory. We can generate a Laravel event by running “php artisan event:generate” command. [...]

11 11, 2020

Salesforce Einstein

2020-11-11T05:43:54+00:00November 11, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Salesforce Einstein is the first encompassing AI for CRM. Einstein is an integrated set of AI technologies that make Salesforce Customer 360 degrees smarter and bring AI to trailblazers everywhere. Salesforce is one of the earliest adopters of AI capabilities [...]

4 11, 2020

Salesforce Dashboard Customization

2020-11-04T06:52:07+00:00November 4, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Dashboards in Salesforce are the graphical representation and easily understandable visual presentation of reports data in salesforce. Salesforce dashboards have some visual representation components like graphs, visualforce pages, charts, tables, gauges, and metrics. Salesforce dashboard components are used to represent [...]

30 10, 2020

Deep Learning

2020-10-30T06:23:15+00:00October 30, 2020|eLearning|0 Comments

|
| ByWebner

Deep learning is an advanced form of machine learning that uses many layers of neural networks to achieve accuracy in predicting results. Neural networks enable a computer to learn from data. Building algorithms using different techniques of neural networks is [...]

28 10, 2020

How to get Salesforce object records with only required fields in Apex

2020-10-28T13:10:38+00:00October 28, 2020|Cloud, Insurance|0 Comments

|
| ByWebner

Problem: If you want to get records with dynamic fields (all fields or only required fields) selection of an object in Salesforce. Solution: List normalFields = new List(); List requiredFields = new List(); Schema.DescribeSObjectResult objectDetails = ObjectName.sObjectType.getDescribe(); Map fieldsMap = [...]

Go to Top