ArchiveDecember 2017

List Email Reports: Adding columns and filters in Pardot

L

Path: Reports| Marketing Assets | Emails | List Emails Unlike all the reports that are available in pardot, in list email  report we can add /remove/rearrange the columns in the table along with adding additional filters. The standard fields that we can see includes fields such as name, sent date and count, bounces, delivery rate, total and unique clicks, unique CTR, campaign, tags. The other...

Butter Knife

B

Butterknife is a light weight library to inject views into Android components. It uses annotation processing. The @BindView annotation allow to inject views and performs the cast to the correct type for you. The @@OnClick(R.id.yourid) annotation allows to add OnClickListener to a view. You can optional define the method parameter of the view in case you want it injected. Butterknife includes also...

Convert String to PrivateKey

C

Below code works to convert string to PrivateKey public static class DecryptionUtil { private static final String ASYMMETRIC_ALGO = "RSA/ECB/PKCS1Padding"; public static byte[] decryptUsingPrivateKey(PrivateKey privateKey, byte[] data) throws IOException, GeneralSecurityException { Cipher pkCipher = Cipher.getInstance(ASYMMETRIC_ALGO); pkCipher.init(Cipher.DECRYPT_MODE, privateKey); return...

How to Become a Great UI, UX Designer in 5 Easy Steps.

H

1. Know the basic abilities & responsibilities of UX/UI designers Almost everyone can become a UX/UI designer by self-taught or training course. However, when it comes to how to become an excellent UX/UI designer, it requires not only basic design capabilities but also some necessary abilities, including the ability of logical thinking, data analysis, empathy, communication, observation and...

Sending a VF Page as Attachment in Mail through Apex Class

S

Following code can be used for sending a vf page as an attachment with an email: public class Gene_PDF{ public PageReference sendPdf(){                PageReference pdf = Page.mail_pdf;//mail_pdf is the name of vf page      pdf.getParameters().put('email',email);      // goToNextPage('email');     Blob body;                try{         body = pdf.getContent();      }catch(VisualforceException e){...

Source Group formats for popular Sources in Social Studio

S

Source Groups Source Groups, also known as source filters in Radian6 Analysis Dashboard, enable tracking and managing of social listening sources that are important to your company. Source Groups are used in Social Studio to define a set of sources that you would like your topic profile to look at. The sources can be social assets, such as a Twitter handle or a Facebook page, or can be websites...

Social Studio – Brief Introduction

S

What is Social Studio? Social Studio helps marketers build 1:1 relationships that grow value for both the brand and the consumer. Social Studio is a product under the Salesforce Marketing Cloud that deals with offering effective social media marketing solutions. In particular, it helps businesses tap into the power of social media in its marketing, customer service, and sales organizations...

Implement a drawing app in Swift

I

Implement smooth drawing in iOS using swift. A drawing app allows the user to draw on the screen with their finger. There are many companies  ask customers to sign on apple device when making purchases.  Steps — 1> create a custom class line for initializing values of start and end point of line import UIKit class Line{   var start : CGPoint   var end : CGPoint   init(start _start : CGPoint ...

Using @future method in salesforce

U

Using @future method in salesforce and its limitations Salesforce provides different ways to run your code asynchronously like Batch apex, @future method. In this post we will see how to use @future method, its advantages, limitations and the precautions that we need to follow while using it. We can use the @future methods in cases where methods are long running. In such cases we can prevent...

ERP Software Testing

E

Testing the ERP (e.g SAP) software application is different than testing the other software applications. ERP applications are domain specific and industry-specific. The common modules like Finance, Accounting, Inventory, Fixed Asset, Sales, Purchase, Human Capital, and Payroll are available in all the ERP systems. Apart from these common modules, few industrial specific modules are available as...

Category