Get the type (data type) of a field in apex
Using Describe Method: Consideration Notes: Just a query – After Spring 20 Consideration Notes
Using Describe Method: Consideration Notes: Just a query – After Spring 20 Consideration Notes
If you are getting this error message while sending email using “Messaging.SingleEmailMessage” System.EmailException: SendEmail failed. First exception on row 0; first error: NO_MASS_MAIL_PERMISSION, Single email is not enabled for your organization or profile. Single email must be enabled for you to use this feature.: [] Step to resolution Make sure Email Deliverability is turned on. …
“NO_MASS_MAIL_PERMISSION” Error While Sending Email From Apex Read More »
Most efficient way of identifying the type of org (Production or Sandbox) via Apex code: Actually we can query this detail from Organization object as below: On the top of this, we can build our own service method like below:
Apex Code Snippet to Convert Blob into String Apex Code Snippet to Convert String into Blob
Check on the profile for the user. Access the profile settings in order to verify that API is enabled as well. In LEX, go to Set up | Users | Profiles. In Classic, click Setup | Administration Setup | Manage Users | Profiles. Select the profile that you need to check, and under “Administrative Permissions” verify if API Enabled is selected.
The following sample code approves records in mass using apex. Below example just uses Account object’s record. Please feel free to update it as per your need.
We get this requirement while coding several time to convert epoch time (Unix time) to Datetime. First thing, never store a epoch time in Integer and use Long always. Below given code can be used to convert into datetime: To get the epoch from a datetime variable you can just call the getTime() instance method:
You can use the PageReference.getContentAsPDF() method in Apex to render a Visualforce page as PDF data. Then use Apex code to convert that PDF data to an email attachment, a document, a Chatter post, and so on.The following example is a simple three element form that selects an account and a report format, and then sends the …
Feel free to utilize this method and change as per your need: