Skip to main content

Declarative Features Vs Programmatic Features

Declarative Features Vs Programmatic Features

> Declarative Features :

  1. Declarative customizations can be made point and click in a browser.
  2. Declarative customizations require an understanding of Force.com concepts, but no coding knowledge.

  • Advantages of declarative customizations:
    • Ease of development.
    • More visual.
    • Faster.
    • Ease of upgrades.
    • Ease of maintenance.
    • Does not require programmatic skill set.

> Programmatic Features :

  1. Programmatic customizations are made with code.
  2. Programmatic customizations require coding skills and allow developers to extend beyond the declarative Salesforce.com capabilities.

  • Advantages of declarative customizations:
    • Can extend the capabilities of an application beyond standard functionality.
    • More customizations as we required.


By : Harshal Lad  

Comments

Popular posts from this blog

Apex Triggers and Classes

  Apex Triggers   is use to execute the functionality or piece of code on record manipulation ( i.e., CREATE / UPDATE / DELETE / UNDELETE   records ). A trigger executes before and after an event occurs on record.

Salesforce Development Index

C ourse C ontent Declarative Features Vs Programmatic Features Salesforce Architecture ( MVC ) Data Types Apex Classes If – Conditional and loops Collections in APEX List Set Map Oops Concepts Inheritance Polymorphism Encapsulation Abstraction Data Manipulation Language (SOQL) & SOSL Exception Handling Triggers and its Best Practices Custom Setting, Custom Metadata and Custom Labels Where to use it ? How to use it ? Apex Trigger + Custom Setting Asynchronous Apex Batch Classes Scheduler Classes Queueable Classes Future Method Apex Governor Limits Test Classes for Triggers and Apex classes Visualforce Pages Standard Controllers Extension Controllers Custom Controllers Wrappers Classes in Apex By : Harshal Lad ( CorpoVision Te...

Polymorphism in Apex

Polymorphism in Apex P olymorphism in simple word can be said as  One name many forms. For example , a man can play a role as an Employee, as a Father or as a Husband in his day-to-day life. It means that he can be in any of these form.  Polymorphism can be achieved by these two ways : Method Overloading Method Overriding Method Overloading If a class have multiple methods with same name but different parameters (either different length of the arguments or different data types of the arguments), it is known as Method Overloading. If we have to perform only one operation, with the same name of the methods increases the readability of the program as well as its very logical too. Let’s suppose if we want to perform addition of the given numbers but there can be any number in arguments as below: Example of method over...