Salesforce Certifications
Salesforce certification exams recognize experience as well as study. Getting certified boosts your career and enables you to contribute even more to your organization's success. Check the below link for ....
Salesforce certification exams recognize experience as well as study. Getting certified boosts your career and enables you to contribute even more to your organization's success. Check the below link for ....
Sample Code: SchedulerClass obj = new SchedulerClass(); String cron = '0 30,30,30 8,12,15 * * ? *'; System.schedule('SchedulerClass', cron, obj); In the above example, SchedulerClass will run daily at 8.30 ....
Sample Code: Employee__c emp = new Employee__c(Employee_Name__c = 'Testsing'); insert emp; Test.setCreatedDate(emp.Id, DateTime.newInstance(2000,10,10)); Check the below link for more information https://developer.salesforce.com/docs/atlas.en-us.200.0.apexcode.meta/apexcode/apex_methods_system_test.htm#apex_System_Test_setCreatedDate ....
Sample Code: UserInfo.getUserName(); Cheers!!!
When a Salesforce Sandbox is created or refreshed, the username will be appended with the Sandbox Name. So, we can use UserInfo.getUserName() and find the sandbox name from the User's ....
Option 1: Sample Apex Class: public class Utility { public static Boolean sandboxBool; public static Boolean isSandbox() { if ( ....
1. Go to the user's profile. 2. Select Visualforce page Access. 3. Click Edit button. 4. Add the Visualforce page to the right panel. 5. Click Save. Cheers!!!
ActiveXObject always return JAVASCRIPT date format. In order to format it for your requirement, we can get the month, date and year to format it. Sample Code: if ( String(XLSheet.Cells(rowIndex, ....
In order to read excel cell value as it is there in the cell instead of date, remove .value. So, that it will just read the value as it is ....
Go to MavensMate --> Metadata to create New Component in MavensMate. Cheers!!!