background preloader

Prakhar09

Facebook Twitter

Gmail Email Marketing

Multi-Select and Mass Update Records in Lightning List Views Using Flows, Visualforce and a List Button – SUCCEED WITH SALESFORCE. After the Winter ’17 release, it is now possible to select records in Lightning List views when a List View button is placed on the List View Search layout of an Object.

Multi-Select and Mass Update Records in Lightning List Views Using Flows, Visualforce and a List Button – SUCCEED WITH SALESFORCE

I saw this mentioned somewhere in the Winter ’17 release notes a while ago and had been itching to try it out using a Flow custom button placed on a List view in Lightning interface. I gave it a shot this morning and it worked just I had intended it to. This opens up a plethora of opportunities to create ‘mass/bulk actions’ which can work with selected or even all of the records in a List View. Requirement: Wayne Enterprises wants its sales reps to have the ability to mass update owners across multiple Opportunities in a Lightning list view. The sales rep should be able to select records in the list view and specify the email of the new owner which would then mass update the records’ owner to be the new person.

Salesforce Lightning

Nutrition. Building Muscles. Approval Process. Learning Salesforce: Query Approval Process in Salesforce. 1.

Learning Salesforce: Query Approval Process in Salesforce

ProcessInstance: - Single instance for accessing the end-to-end Approval process - eg: 1. SELECT Id, (SELECT Id, StepStatus, Comments FROM Steps) FROM ProcessInstance This query will query all Approval process and it's Steps Steps is the childRelationshipName for ProcessInstanceSteps 2.

Salesforce full backUP ways

FORM CSS Salesforcee. Validation on VF page using js. Workbench. Embedded Single Board Computer, ARM Development Board, System on Module. India Change Location We've been delivering System on Module technology for over 25 years Email us about your project Or call us at +91-80-40867046/49, we'd love to hear from you.

Embedded Single Board Computer, ARM Development Board, System on Module

PHYTEC Embedded Pvt. Ltd. PHYTEC Embedded Pvt. . #438, 1st Floor, 18th Main,6th Block, Oppt. Driving Directions. Developer.salesforce. Sfdc interview. Salesforce Developers. Salesforce : handle large data. SOQL. Eclipse-sfdc.

SFDC List fundamentals

Visualforce page. DML Statements vs. Database Class Methods. Apex offers two ways to perform DML operations: using DML statements or Database class methods.

DML Statements vs. Database Class Methods

This provides flexibility in how you perform data operations. DML statements are more straightforward to use and result in exceptions that you can handle in your code. This is an example of a DML statement to insert a new record. This is an equivalent example to the previous one but it uses a method of the Database class instead of the DML verb. One difference between the two options is that by using the Database class method, you can specify whether or not to allow for partial record processing if errors are encountered. The following helps you decide when you want to use DML statements or Database class methods. Use DML statements if you want any error that occurs during bulk DML processing to be thrown as an Apex exception that immediately interrupts control flow (by using try. . .catch blocks). How to pass Paramater using CommandButton - A Tutorial / Lessons learned - Salesforce Developer Community. Gif Recorder Help.

GIF recorder Softwares

SFDC Utility tools. LIGHTNING CODE SAMPLES. The Most Powerful Prayer of Planet Sun- Aditya Hridaya Stotra (Surya ki Sabse Prabhaavshaali Prarthna) ~ The Astro Junction. Dear Readers, I am back with my latest post.

The Most Powerful Prayer of Planet Sun- Aditya Hridaya Stotra (Surya ki Sabse Prabhaavshaali Prarthna) ~ The Astro Junction

It took me a lot of time to write this post due to it's length. (Android users who are watching this post through my app (Astro Junction App) on their smartphones, should click on the title of the post above to see the complete post.) This post is on Aditya Hridaya Stotra which means heart of Sun. This is the most powerful prayer for planet Sun. You can read more posts related to planet Sun by clicking on the links below. प्रिय पाठकों

Triggers

Fat Burning. Salesforce JavaScript Remoting: Using Apex and JavaScript objects to pass data from client- to server-side and vice versa. Salesforce JavaScript Remoting: Using Apex and JavaScript objects to pass data from client- to server-side and vice versa I’ve spoken about how to do this at a high-level during Cloudstock London and there are hints at how it can be done but no formal documentation that I’ve found, so here we are Quite simply JavaScript Remoting will transform Apex objects and classes (or collections of these types) into JavaScript objects for you.

Salesforce JavaScript Remoting: Using Apex and JavaScript objects to pass data from client- to server-side and vice versa

The opposite is true too but there are some rules you need to observe. Apex Types to JavaScript Equivalents This is the easier of the type conversions in that you don’t have to really do anything to make it happen. The Controller. QR Code Generator.

BLOB CHUNKING

URL building. Upload file in Multipart in APEX. Attachment in SFDC. Make API request using APex. Daniel Ballinger's FishOfPrey.com: Prototype CSV viewer for Visualforce. This is a quick prototype to pull a CSV out of a Document blob stored in Salesforce and render it in a table via Visualforce.

Daniel Ballinger's FishOfPrey.com: Prototype CSV viewer for Visualforce

It borrows heavily from the CSV parser by Marty Chang linked at the end of the post. Parts are a bit rough around the edges. E.g. It is missing standard error checking. CsvReader.apex ViewCsvController.apex ViewCsv.page.

Dynamic reports salesforce

Drive Salesforce integration. Salesforce BATCH. Apex - System.ListException: Before Insert or Upsert list must not have two identically equal elements - Deep Dive. BOX API. Salesforce -View state resolved ways. Ways to fetch above 50,000 records. Salesforce Export to Excel Programatically. Best SFDC Tutorials to work on: How to export data in Excel using Visualforce. Fit folder. Apex - How to send and receive data from Salesforce to a FTP server. My question is how I can intergrate Salesforce with different FTP servers in real time.

apex - How to send and receive data from Salesforce to a FTP server

I have read some articles about it, but to be absolutely sure I thought it would be a good idea to post a question here. I want to be able to send and receive data from Salesforce as a csv file to a ftp server. How I'm thinking about doing this is listed below. Send the data: Create a apex class which query the necessary data in Salesforce and create a csv file. This one is a bit trickier.

Claritus counsulting folder

Reporting - Scheduled reports as attachment. Photoshop tuts. The basics of calling a Visualforce page from a Salesforce detail page. What ingredients do we need to call a Visualforce page from a detail page in Salesforce?

The basics of calling a Visualforce page from a Salesforce detail page.

1) 1 Apex Class 2) 1 Test Class 3) 1 Visualforce page 4) 1 Custom Button 5) Adding the custom button to a page layout. 6) A little love never hurts. Once we mix all of these up to get them connected properly we will have the foundation to accomplish anything that Apex and Visualforce can provide. Difference between Abstract & Virtual class and Interface w.r.t Apex in Salesforce. Let me admit from the beginning that I’ve a non Java Background.

Difference between Abstract & Virtual class and Interface w.r.t Apex in Salesforce

Being in Salesforce development role for more than 3 years, this concept eluded me for sometime. There are plethora of examples on the internet but not everyone explain this in simple and lucid words. Also not able to able find single link which explain everything with example in one single article. Last but not least, I tend to forgot things If I don’t write. so making attempt to make this clear for myself (and if possible for everyone), once for all.

Interfaces : Taking definition directly from Salesforce site as it is very clear from there An interface is like a class in which none of the methods have been implemented—the method signatures are there, but the body of each method is empty.

Treailhead Best

Salesforce:making user friendly customizations. Profile,Permission set,OWD,Roles,Sharing Rules. Salesforce:How to do in SFDC. Object Oriented Programming vs. Procedural Programming. Security Review. Accessing Custom Settings. You can access custom settings from formula fields, validation rules, Apex, and the SOAP API. Some sample code segments are provided below. Formula Fields Formula fields only work for hierarchy custom settings; they can’t be used for list custom settings. Salesforce Best Practices. Salesforce Integration. Apex - SFDC: Understanding With Sharing, Without Sharing & Unspecified Sharing Classes.

I am sure you would have read above link and lets clarify and touch upon each doubts 1)The object field level security and permissions are not followed even after you define class with "with sharing" keyword.If you are exposing this class for users who dont have proper access at profile level.The below article will tell us how we enforce this using apex and visualforce. Note if you are using standard controllers and input field in your visualforce the field level security will apply and in case of output text or input text you will need to verify yourself with technique mentioned in below blog 2)The general rule of thumb is if its extended or implemented class then parent class context apply while if its inner class then the "withsharing" or "without sharing" keyword decides the behavior.If say none is specified then the caller class for the inner class (The class from which the inner class is called may not be container class)decides the behavior .

Lets solve your use cases.

Lightning Components

Jquery right menu. Retrieving a User's Location from a GPS-enabled Phone. Problem You want to capture the location where your mobile users enter Salesforce.com data by retrieving the GPS coordinates from a BlackBerry smartphone or iPhone when users save a record. Solution Write a Visualforce page that sales representatives can use when logging sales visits. The Visualforce page contains JavaScript that captures the device's longitude and latitude when the record is saved. After writing the Visualforce page, we'll create a tab for the page and add the tab to the mobile application. Before starting this recipe, make sure you complete the following prerequisites:Mobile Licenses:All existing Developer Edition organizations have mobile licenses.

First, create a custom object named Sales Visit. Click Setup | Create | Objects | New Custom Object.

Test classes

Pardot certification. Increase Retention. 20 Study Hacks to Improve Your Memory. We’ve scoured our brains and the internet for the best study hacks to help your brain remember information quicker and easier and ultimately help you do better in your exams. 1. Walk Before An Exam It’s been proven that exercise can boost your memory and brain power. Research conducted by Dr. Chuck Hillman of the University of Illinois provides evidence that about 20 minutes exercise before an exam can improve performance. 2. Lightning Design System. Communities. Untitled. Configuring Salesforce Profiles: Tips I Wish Someone Told Me from the Start - OpFocus, Inc.

July 30, 2013. Apex Tutorials. Hi, I am getting the error message System.QueryException: List has no rows for assignment to SObject MY TRIGGER is as follows: trigger contactRecOwnerUpdate on Contact (before insert) { // This trigger sets the owner of the contact record to be the same as the // owner of the account record // // Version 1.0 Map contactMap = new Map();

Cheat Sheets. Query for all Notes And Attachments directly or indirectly related to an Account - Salesforce Developer Community. Traversing and Querying sObject Relationships. sObject Relationships and Dot Notation. SOQL – How I Query With Thee, Let Me Count the Ways. SOQL and SOSL Difference. SOQL and SOSL Queries The following table describes about the different between SOQL an SOSL Queries. Order of execution in Salesforce. SOQL and SOSL Difference. Salesforce Developers. >> Salesforce.com rest api examples. Write global Apex class with URL MappingAuthentication process with OAuth2.0. Infallible Techie: Date and DateTime methods in Salesforce.

SFDC XML PARSING

An Introduction to OAuth 2. Introduction. Salesforce formula fields. Salesforce PDFs. Using soapUI with Salesforce to test standard and custom web services response – All about Web and Cloud. Salesforce SOAP integration. Salesforce interview questions. jQuery Tricks and Fundas. .add() Salesforce Lightning Design System. jQuery API Documentation. Jquery Interview questions. Checkmarx.