Difference between Developer, Configuration only and Full Sandboxes
Cheers!!!
Salesforce Classic: 1. Go to Setup --> Administration Setup --> Data Management --> Sandboxes. 2. Click "Login" link. (Or) 1. Go to "https://test.salesforce.com/". 2. Give your username and password as ....
1. Go to Setup --> Administration Setup --> Data Management --> Sandboxes. 2. Click "New Sandbox" button. 3. Enter a name and click "Next" Button. 4. Click "Create" button.
Sample Code: Visualforce page: <apex:page sidebar="false" ><apex:form ><apex:panelGrid columns="2" width="100%" cellpadding="5" cellspacing="5" > <apex:outputtext value="Name"/> <apex:inputtext /> <apex:outputtext value="Age"/> <apex:inputtext /> <apex:outputtext value="Total Experience"/> <apex:inputtext /> <apex:outputtext value="Skill"/> <apex:inputtext /> ....
1. Go to Build --> Develop --> Sites. 2. Open the Site by clicking the Site Label. 3. Click "Public Access Settings" button. 4. Go to Field Level Security and ....
The Content Type for csv is 'application/csv'. The Content Type for text is 'text'.
To remove required field validation in a Visualforce page, set immediate attribute in <apex:commandButton> tag to true. Example:<apex:commandButton value="Cancel" action="{!cancelChanges}" immediate="true"/> here immediate="true" makes the action to be executed first ....
Sample Code: Document d = new Document(); d.FolderId = '00l90000001KHtg'; //Id of the folder under Documents d.Name = e.Name + Date.Today(); ....
Sample Code: Employee__c e = [SELECT Name from Employee__c WHERE Id = : eid]; Attachment a = new Attachment(); a.ParentId = eid; a.Name = e.Name + Date.Today(); a.ContentType ....
Sample Code: Visualforce page: <apex:page controller="Sample" sidebar="false" action="{!fetch}" contentType="text/plain/#emp.txt" cache="false"> Employee Number : {!emp.Name} Employee Name : {!emp.Employee_Name__c} City : {!emp.City__c} Email : {!emp.Email__c} Description : {!emp.Description__c} </apex:page> Apex Controller: ....