SIGN IN SIGN UP

Login to your account

Username or Email *
Password *
Remember Me

Search Quiz

Search for a Quiz

No results found

Streak

Mon Tue Wed Thu Fri Sat Sun
Longest Streak: Current Streak:
Administrator Progress ( Quizzes)
Flow Builder Progress | ( Lessons)
Apex Beginner Progress | ( Lessons)
Apex Intermediate Progress | ( Lessons)
Integration Progress ( Quizzes)
LWC Progress | ( Lessons)
Experience Cloud Progress ( Quizzes)
Exercises ( Quizzes)

There are several ways to make a field read-only in Salesforce. Here are some of them:

  1. Field-Level Security: You can make a field read-only for a specific profile or permission set using field-level security. This can be done by going to the object's detail page, selecting the field, and clicking on the "Set Field-Level Security" button.

    image
  2. Page Layouts: You can make a field read-only on a page layout by going to the object's detail page, selecting the page layout, and then dragging the field into the "Read Only" section of the layout.

    image
  3. Validation Rules: You can create a validation rule that prevents users from editing a field. For example, you could create a validation rule that says "if the field is not blank, prevent users from editing it."

    AND(
      ISCHANGED(AnnualRevenue),
      NOT(ISNEW())
    )
    ​
  4. Triggers: You can create a trigger that prevents users from editing a field. For example, you could create a trigger that says "if the field is not blank, prevent users from editing it."

    trigger PreventAccountNameUpdate on Account (before update) {
        for(Account acc : Trigger.new) {
            if(acc.Name != Trigger.oldMap.get(acc.Id).Name) {
                acc.Name.addError('You are not allowed to update the Name field on the Account object.');
            }
        }
    }
    ​

Overall, there are multiple ways to make a field read-only in Salesforce depending on your specific needs and requirements.

TODAY

1 Derya Baskol 1095
2 Tugbag Tamer Yilgin 855
3 Solmaz Aliyeva 585
4 Efe Kadioglu 285
5 Ayse Yilmaz 235
6 Sercan Kara 190
7 Emel Sarli 190
8 Ahmet Derdiyok 140
9 Fatma Ablak Oren 135
10 Zeynep Yildiz 110
11 Ridvan Ay 85
12 hatice nal 60
13 Osman Demirel 56
14 Bahar Erdagi 55
15 Mehmet Akin 55
16 Aysun Bilgic 45
17 EA 45
18 Sarah Aslan 20
19 Nora Arslan 20
20 Okan Ozcelik 10

Last 7 Days

1 Derya Baskol 10196
2 Solmaz Aliyeva 5950
3 Okan Ozcelik 5597
4 Tugbag Tamer Yilgin 5478
5 Ayse Yilmaz 2483
6 Fatma Ablak Oren 1470
7 Emel Sarli 1406
8 Sercan Kara 1405
9 Ahmet Derdiyok 980
10 Mehmet Akin 800
11 Zeynep SEMİZ 770
12 Osman Demirel 746
13 Kemal Ozdemir 695
14 Zeynep Yildiz 665
15 Aysun Bilgic 609
16 Bahar Erdagi 603
17 Safiyye Arslan 510
18 Efe Kadioglu 450
19 Nora Arslan 450
20 Engin Basturk 437

Last 30 Days

1 Derya Baskol 1095
2 Tugbag Tamer Yilgin 855
3 Solmaz Aliyeva 585
4 Efe Kadioglu 285
5 Ayse Yilmaz 235
6 Sercan Kara 190
7 Emel Sarli 190
8 Ahmet Derdiyok 140
9 Fatma Ablak Oren 135
10 Zeynep Yildiz 110
11 Ridvan Ay 85
12 hatice nal 60
13 Osman Demirel 56
14 Bahar Erdagi 55
15 Mehmet Akin 55
16 Aysun Bilgic 45
17 EA 45
18 Sarah Aslan 20
19 Nora Arslan 20
20 Okan Ozcelik 10

All Times

1 Derya Baskol 49970
2 Engin Basturk 26793
3 Fatih 24248
4 Solmaz Aliyeva 23081
5 Zehra Bulut 21583
6 Okan Ozcelik 19655
7 ZY 18016
8 Zeynep Yildiz 17170
9 Alaattin Kokcu 16962
10 Burcu Derdiyok 16611
11 Cavidan 16514
12 Bahar Erdagi 15779
13 Sebahattin Dalgic 15756
14 Ozlem Helva 15623
15 Esra Balci 15343
16 Ada Lozzy 14765
17 Emel Sarli 14290
18 Tugbag Tamer Yilgin 13909
19 Hakan Can 13232
20 Mehmet Y 13024
Go to top