Types of Sandbox 1. Developer Sandbox : Developer sandbox are intended for coding and testing. Developer sandbox copies all application and configuration set up information to sandbox. 2. Pro - Developer Sandbox : Pro Developer are intended for coding and testing. Copies all your production org reports and dashboards, price book, products, apps and customization but excludes all organisation standard and custom records, documents and attachments. Pro developer have large storage limit which allow more robust development and more test data sets 3. Partial Data Sandbox : Partial copy sandbox are intended to be used as testing environment and can be used for quality assurance tasks such as user acceptance testing and training. It includes reports and dashboards, pricebook, products, app, customization and custom and standard records, documents and attachments. 4. Full Sandbox : Exact copy of Production including all data, supports full performance testing, load testing. ...
Posts
Showing posts from November, 2014
- Get link
- X
- Other Apps
By
Puneet Mishra
-
Page Layout and Record Types Page Layout: Page Layout is a organisation of fields, custom links, and related lists on Object detail page, From page layout we can see which fields links and related list a user will see and also decide which field should be read only and required. Page layout also provides us to create new page sections. Record Types: Record Type allow us to associate different business processes and subset of pick-list value to different users based on their user profile. Record type can be used to decide what page layout user will see while viewing the records based on their user profile. We can tailors our user interaction according to business specific needs.
- Get link
- X
- Other Apps
By
Puneet Mishra
-
Salesforce Activities : Difference between Task and Event Activities in Salesforce are of two types Task and Event. Task are basically used to log an activity like call, reminders, emails while Events are used scheduling meetings etc. 1. Tasks : A task is an activity not schedule for any date and time. You can specify a due date for a task or there may not be any particular date or time that task need to be completed examples: - making a phone call - opening a email think of task like a check box whose value can only either be true or false. 2. Event : An event is an calendar event scheduled for a specific day and time examples : - meeting, - conference call event carry a aspect of duration of time
- Get link
- X
- Other Apps
By
Puneet Mishra
-
Salesforce Relationships In salesforce you can associates objects with other objects using relationship. You can define different types of relationships by define custom relationship fields and different relationship also determine the approach of data deletion, record ownership, security. Types of Relationship: 1. Master - Detail (1:n) : Its a parent child relationship in which Master object controls the behavior of child object like a) When master record is deleted its related detail/child record also gets deleted. b) Owner field on detail/child object is not available and its owner is automatically set to owner of its Master object record. c) Custom object of detail side of Master Detail relationship do not have sharing rule, manual sharing as these require Owner field. d) Detail record inherit the sharing and security settings from its master record. e) Master - Detail relationship field is required on page layout of the detail record. ...
- Get link
- X
- Other Apps
By
Puneet Mishra
-
Custom Component Custom Components allows the custom visualforce functionality to be encapsulated as discrete modules, which actually provides two advantage: 1. Code re-use : custom component provides an functionality of code reuse, we can use the same code for number of pages. 2. Functional decomposition : if visualforce page is lengthy then we can broke down the page into custom components to make it easier to develop and easy to maintain. like visualforce page custom component can also have controller but only custom component. * Custom component do not have any associated security settings. A user with access to visualforce page have access to all custom component used in visualforce page. example : go to setup > develop > custom componet to create custom component and paste the below code. <apex:component > <apex:attribute name="Contact" type="Contact" description="The contact to edit" require...
- Get link
- X
- Other Apps
By
Puneet Mishra
-
Change Images When Picklist value Changes You can add create a functionality in which on change on picklist value the images will change. To do so add images in your static resource and create vf page and controller with below code. Visualforce page: <apex:page controller="PicWithPicklist"> <apex:form > <apex:pageBlock > <apex:selectList value="{!legend}" size="1"> <apex:selectOptions value="{!legendNames}"></apex:selectOptions> <apex:actionSupport event="onchange" reRender="picPanel"/> </apex:selectList> ...
- Get link
- X
- Other Apps
By
Unknown
-
Winter 15 Release - Advanced Setup Search Winter 15 makes the search more powerful allowing to search for individual setup items which in earlier version only returned the titles of pages in setup menu. In earlier version when we tried to search workflow the result returned is like below picture. but from winter 15 when tried to search workflow result returned would be This feature is enabled for all organization by default. You can disable this feature from setup -> user interface