Skip to main content

Posts

Showing posts from 2015

Imp/Useful References

Global Variables https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_variables_global.htm In Flow, if the formula statement evaluates to true, the input is valid. If the formula statement evaluates to false, the error message is displayed to the user. The  CampaignMember  object represents the relationship between a campaign and  either a lead or a contact. For more details, browse the URL, https://www.salesforce.com/developer/docs/api/Content/sforce_api_objects_campaignmember.htm . The  CollaborationGroupFeed  object represents a single feed item on a Chatter group feed. For more details, browse the URL https://www.salesforce.com/developer/docs/api/Content/sforce_api_objects_collaborationgroupfeed.htm . To set the finish  location, or to redirect a user to a specific page  after completing the Flow execution for a custom button/link, navigate to the custom button  Create Lead  that we have created in the pr...

Visual Workflow

The benefits of Visual Workflow There are  certain benefits of using Visual Workflow. They are as follows: It allows you to create an automated business process using click not code. Visual Workflow does not require coding, and even if you do not know Apex code you can still develop business processes. Using screens, fields, and choices, you can implement complex business processes to make sure that your users are entering data in the right format. Through Visual Workflow, you can manipulate data for certain objects that are not available for the Workflow rule. For example, when a "contact role" is created or updated as primary for an opportunity then create a new task. It allows you to auto submit records for approval. You can post messages on Chatter. For example, if opportunity status gets Closed Won, post a message on Chatter group. It allows you to embed the Flow into the Visualforce page and using the Force.com Site you can expose it for ...

Visualforce fundamentals

Visualforce  is a web development framework that enables developers to build sophisticated, custom user interfaces for mobile and desktop apps that can be hosted on the  Force.com  platform. You can use  Visualforce  to build apps with user interfaces that look like the standard interface provided by  Force.com , as well as your own completely custom interface. Visualforce  enables developers to extend  Salesforce ’s built-in features, replace them with new functionality, and build completely new apps. Use powerful built-in standard controller features, or write your own custom business logic in  Apex . You can build functionality for your own organization, or create apps for sale in the  AppExchange . Visualforce  app development is familiar to anyone who has built web apps. Developers create  Visualforce  pages by composing components, HTML, and optional styling elements.  Visualforce  can integrate with ...