Can you make a lightning app available to public salesforce

1.Using Lightning Components for Visualforce, you can add your Lightning app to a Visualforce page, and then use that page in Salesforce Tabs + Visualforce communities. Then you can allow public access to that page. 2.Using Lightning Out, you can deploy your Lightning app anywhere Lightning Out is supported—which is almost anywhere! Using Lightning Components … Read more

Can you make a field in salesforce conditionally required

It’s possible to conditionally make a field required by using a validation rule. Resolution The following Validation Formula can be used as a reference. AND (Account_Market = “Corporate”, Test = “”) It’s possible to conditionally make a field required by using a validation rule. The following Validation Formula can be used as a reference. This … Read more

Can you lock reports for sharing in salesforce

Folder Sharing in Salesforce allows you to restrict access to reports and dashboards by users, roles, roles and their subordinates, territories, territories and their subordinates, and public and private groups. With enhanced folder sharing, you can control who sees what. Full Answer Why would you Lock Records in Salesforce? Sometimes you would want to lock … Read more

Can you lock files in salesforce

So, then how do you lock records in Salesforce so that it can no longer be modified? Traditionally there has been a few options Using Record Type & Page Layouts: Create two different record types say “Open” & “Locked” and change the record type of the record using workflow field update or trigger. To lock … Read more