MicroPyramidBlog

Explore a blog dedicated to a wide spectrum of topics including Django, Python, Machine Learning, Salesforce, Angular, React, Flutter, Svelte, LINUX, and Amazon Web Services.

How to Configure Web to Lead Generation in Salesforce

Web-to-lead allows you to create a lead record in Salesforce whenever a visitor submits contact information on your website. This all can be done by creating web-to-lead form with required fields and customization's.

Salesforce Read Full Post

Deploying Wordpress Blog with Django using Docker Containers

Containers run services in an isolated environment, if we deploy our applications using containers then the host system on which these containers are running will not be affected even though the applications running within containers are being hacked.

Server Management Read Full Post

How to Send Email to a Public Group in Salesforce

In Salesforce it is quite difficult to send email to users individually when there are many. So, upon creating public groups with required users working on a particular project or something else. We can send emails to required particular users using public groups.

Salesforce Read Full Post

How to Create Master-detail Relationship in Salesforce?

In Salesforce, relationships are used to create a link between objects. Whenever user clicks on particular object they can view its data and related data of that object. There are many relationships in salesforce, one among them is Master(parent)-detail(child) relationship.

Salesforce Read Full Post

How to Use Data Loader in Salesforce

In any business importing and exporting of data is very important. Only to some extent, we can enter the data manually in the fields of any organization, So when there is a requirement for bulk upload of data, there are many tools available. In Salesforce, we use Data loader to export or import bulk data into the organization.

Salesforce Read Full Post

How to Set Up Outbound Messaging in Salesforce

When you want to send information from Salesforce organization to any third party external service, Outbound messaging is used in Salesforce. It is a part of workflow rule, like whenever an action is triggered and an Outbound message is defined for that particular action, then the information will be delivered to external service as specified.

Salesforce Read Full Post

Introduction to Django's Class Based Views - Understanding How a Class Based View Works

Django has MVT architecture. A view in django is just a callable that takes a request and returns a response. But this can be more than just a function, that contains the actual business logic of an URL. In addition to normal funcation based views Django provides of some classes which can be used as views. These allow you to structure your views and reuse code by inheriting them.

Approval Process in Salesforce

As we know there will be role hierarchy in many organizations and permissions are assigned according to their roles. So, When a record or data is updated or inserted then automatically it should be approved by some assigned user. To do this In salesforce, we use Approval process method to automate the functionality.

Salesforce Read Full Post

Understanding Django Serializers with Examples

Serializers are used for “translating” Django models into other formats like xmi,json,yaml(YAML Ain’t a Markup Language)

Packages in Salesforce

In the salesforce organization, when you are building a component or application, it's important to know how the component or application should be distributed to other organizations or customers. So for this, we have packages in salesforce in which developed components and applications can be combined and distributed to other salesforce organizations. In this, we have defined different types of packages and their usage.

Salesforce Read Full Post