Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
Zoho CRM | How to hide some account records from view
Zoho does not provide any direct mechanism to hide or unhide account information of any user. However, we have an alternative solution for this problem. We can use a listview to solve this problem. The List view can be used
1and1.com | Create FTP account for specific directory
How to create new FTP user on 1and1.com for specific directory 1. Login to your 1and1.com account. 2. Control panel page will be opened, shown in following screenshot: 3. Click on Secure FTP Account shown at the left menu of
How to integrate CyberSource payment gateway with CakePHP 2.*
Steps to integrate CyberSource payment gateway with CakePHP 2.*: 1. Download zip file of CyberSource library from “https://github.com/chrismeller/cybersource”. 2. Extract cybersource-master folder into cakephp vendors folder. 3. Create tests/config.php for test transaction with code and add credentials like below: <?php
Handling attachments in IndependentSoft MSG.NET package
Handling attachments and Embedded content in Body of the Msg file read by IndependentSoft MSG.NET package As we know that the MSG.NET package by IndependentSoft is used for creating, parsing, reading and converting the Msg email without requiring Outlook to
WordPress | Building custom wordpress theme options panel
With each theme we install, we get its default options panel that provides settings for the theme like color etc. But sometimes there can be a requirement of some more options that are not already in theme’s options panel. So,
Integrate Google Analytics with website
How to integrate Google Analytics with website and enable settings in Google Analytics for tracking various user activities on the website. When we want to monitor visitors’ activity on our website in Google Analytics for that we need to add
CakePHP | How to change Epoch timestamp (unix timestamp) timezone in cakephp find query
Suppose we have a table cake_test with a column named modified that contains epoch values. CakePHP code: $options = array ( ‘fields’ => array ( “modified”, “to_timestamp(modified) as New__original”, “to_timestamp(modified) AT TIME ZONE ‘America/Denver’ as New__converted” ) ); $result =
Salesforce | Fetch more than 2000 records using REST asynchronously in C#
Salesforce gives us a limit of 2000 records to fetch from it using REST calls. But sometimes we need to get all the records from Salesforce. In Salesforce, there is a limit of API calls. By default, it gives 15,000
MySQL | How to convert row values into column names
Sometimes requirement arises to display a field value as column name in output and adjacent values in the same row below it as its values. Suppose I have a table “students” with marks of each student in different subjects. Each