Blogs

  • Enabling Communication Between Two Salesforce Lightning Components Using Attributes

    Facilitating communication between two Salesforce Lightning Components involves transferring data between a child and parent component or vice versa. A direct interaction between a component and its parent or another component isn’t possible via standard JavaScript. Communication channels must be explicitly defined by the programmer. Communication between Salesforce Lightning Components can occur through two methods:…

    Read more…

  • Automating File Uploads to Amazon S3 via Salesforce Apex

    Amazon S3, provided by Amazon Web Services, delivers storage through web services interfaces. The code below assists in uploading files to Amazon S3 through Apex. Preconditions: An AWS account is required Creation of a bucket on AWS is necessary Authentication includes using Bucket Name, Secret key, key, and region Code in Apex Class To enable…

    Read more…

  • Apex’s RemoteAction Annotation | Salesforce Apex Developer Guide

    Annotations: An Apex annotation, similar to a Java annotation, alters the usage of a method or class. Annotations commence with a @ symbol, succeeded by the relevant keyword. To include an annotation in a method, indicate the annotation just preceding the method or class declaration. For instance: This blog will cover the @RemoteAction Annotation. Annotation:…

    Read more…