Salesforce Visualforce Page

Salesforce

How to auto populate Name field in Salesforce?

To  auto populate Name field in Salesforce, follow the below steps 1. Create a Visuaforce page similar to this below code. Sample Visualforce page: <apex:page standardController="Employee__c" action="/a0A/e?RecordType={!$CurrentPage.parameters.RecordType}&Name=[Will+be+filled+automatically]&cancelURL={!$CurrentPage.parameters.retURL}&nooverride=1" /> Replace a0A with your object. To ....