التخطي إلى المحتوى الرئيسي

المشاركات

عرض الرسائل ذات التصنيف salesforce

CRUD Operation in Salesforce using Custom Object, Visualforce, and APEX Controller with MVC Design Pattern

CRUD Operation in Salesforce using Custom Object, Visualforce, and APEX Controller with MVC Design Pattern This tutorial provide step by step implementation to perform CRUD Operation into Course Object. In Salesforce development, building applications that follow standard architectural principles is essential for maintainability, scalability, and clarity. One of the most powerful combinations is implementing CRUD operations (Create, Read, Update, Delete) on a Custom Object using Visualforce Pages , Apex Controllers , and adhering to the MVC (Model-View-Controller) Design Pattern . Step1st: Create Course Object using Admin Dashboard it contain Name, Mode(PICKLIST), Fees, CourseId as an ExternalId. Step2nd: Create APEX Controller to perform CRUD Operation similar this public class CourseController {     public Course__c course1 { get; set; }     public List<Course__c> course { get; set; }     public Id selectedCourseId { get; set; }     publ...

Top 100 Salesforce Interview Question

Top 100 Salesforce Interview Question  🧠 General & Conceptual Questions 1. What is Salesforce? 2. What is CRM, and how does Salesforce implement it? 3. Differentiate between Salesforce.com and Force.com. 4. What are the different types of clouds in Salesforce? 5. Explain the Salesforce architecture. 6. What are the different editions of Salesforce? 7. What is the AppExchange? 8. What is a sandbox? What are its types? 9. What is metadata in Salesforce? 10. What are Governor Limits? 🔐 Security & Access Control 11. What is a Profile? 12. What is a Role? 13. Differentiate between Profiles and Roles. 14. What are Permission Sets? 15. What is a Permission Set Group? 16. What is Field-Level Security? 17. What is Organization-Wide Default (OWD)? 18. What are Sharing Rules? 19. What is Manual Sharing? 20. What is the Role Hierarchy? 🧱 Data Modeling 21. What are Standard and Custom Objects? 22. What is a Record Type? 23. What is a Page Layout? 24. What is a Compact Layout? 25. Wha...

APEX Introduction

 APEX Introduction It is Object oriented programming language that is used to provide custom code to create business logic and database operation. APEX is also used to create salesforce triggers that will work automatically , before and after database operation(Insert, Update, Delete). Apex provide SOQL and SOSL to manage database operation. SOQL means salesforce Object Query Language and SOSL means salesforce  object search language, APEX language syntax is similar to Java programming language, it will compile and execute code using Apex cloud compiler. Salesforce provide developer option to create APEX class and execute option to execute APEX Code. Syntax of Apex public class Classname{    public static retuntype Methodname() {   }   public retuntype Methodname() {   } } Execute Apex code:- Classname ref = new Classname(); ref.methodname(); Static method means it will store data under class memory that's why it would be call by Classname. Instance ...

Most important Salesforce Admin Interview Question?

   Salesforce Admin Interview Questions Here is a list of some Top 55 Salesforce Admin Interview Questions: What is cloud Computing? What is Paas, Saas, Iaas? What is Sandbox and the Type of Sandbox in Salesforce? What is Object in Salesforce? What are the different types of object relations in Salesforce. What is a Master–Detail relationship in Salesforce? What is a junction object in Salesforce? How many LR(lookup relationship) fields can be created in an object? What is a Roll-up Summary field How many way to create What is a Roll-up Summary field What is field dependency What is the difference between role and profile What are Permission sets? What is use of muting permission set in permission set group How many ways we can share a record? What are Audit Fields in Salesforce? What is an Audit trail? What is a Queue in Salesforce? What is a Public Group Difference between static and dynamic dashboards in Salesforce? What are the different types of reports available in Sales...

What is Salesforce? What is Apps and Object?

What is Salesforce? What is Apps and Object?   It is dynamic CRM that is used to create complete web software to manage the any organization internal activity based on sales, service, marketing, community, etc., it also provide customized solution, data integrity and custom app development using multiple salesforce org. Salesforce is a cloud based platform that provide SFDC based product to create and customized complete application under force.com cloud server. It is based on SAAS and PAAS based cloud services.  SAAS means Software as a service and PAAS means Process as a Service. How to create Account on SFDC 1)  developer.salesforce.com/signup create account using this  2)  login.salesforce.com using this write proper userid and password to manage the account login process .................................................................................................... What is App in salesforce:- App means application, salesforce provide two different type...

Salesforce CRUD Operation using Apex class and Visualforce

Salesforce CRUD Operation using APEX Class and VisualForce by Shiva Sir Student Object Insert Code:-  CODE 1st:- <apex:page controller="StuInsert" >     <apex:form >     <apex:pageBlock title="Collage Details">        <apex:pageBlockSection columns="2">                 <apex:inputField value="{!coll.Name}"/>                  <apex:inputField value="{!coll.fees__c}"/>                 <apex:commandButton value="Save Collage" action="{!save}"/>                   </apex:pageBlockSection>              </apex:pageBlock>     </apex:form> </apex:page> APEX CODE for Data Insertion:- public class StuInsert {     public stu__c coll {get;set;}     public...