customization

The users in your organization don’t need to wait for the administrator to customize Microsoft Dynamics CRM in a way that might or might not benefit them. Point them to the article “Personal Customizations” (On-Premise, Online), which has details for how to personalize CRM. Users can change the personal options such as the following:

  • Create custom record list views
  • Create personal e-mail templates
  • A default start page and tab to help you get started faster.
  • How many records to show per page in any list of records. This is a performance optimization. A smaller set of records displays slightly faster.
  • Whether you want the Advanced Find view to open in Simple or Detailed mode by default.
  • Your time zone.
  • The default currency used for your data.
  • Workplace options to control which groups appear within the Workplace area.
  • Your default calendar view.
  • Your default work hours.
  • Whether you want to track your e-mail messages in Microsoft Dynamics CRM.

Cheers,

Carola Klass



{ 0 comments }

Customize Home module menu shortcuts

by C.R. Matín on May 2, 2011

Editor's Note: This post comes from the blog of Sugar Community member Milos Miric, where he talks about customizing the shortcuts used in the Home module menu.   To customize the home menu shortcuts the best way would be to delete all shortcuts there are atm and then add only the one’s you like. For this to work create a file in custom/Extension/modules/Accounts/Ext/Menus/shortcuts_customization.php with following content:
<?php
/*
 * Date: 27.01.2011.
 * Filename: shortcuts_customization
 * Description:
 *
 * @author Milos Miric
 */

global $mod_strings;

// this will unset all menu shortcuts
$count = count($module_menu);
for($i=0;$i<$count;$i++){
	unset ($module_menu[$i]);
}

// set here only links you need like this
if(ACLController::checkAccess('semi_KeywordsCatalogue', 'edit', true))$module_menu[] = Array("index.php?module=semi_KeywordsCatalogue&action=EditView&return_module=semi_KeywordsCatalogue&return_action=DetailView", $mod_strings['LNK_NEW_SEMI_KWCATALOGUE'],"Createsemi_KeywordsCatalogue", 'semi_KeywordsCatalogue');

if(ACLController::checkAccess('semi_Home', 'edit', true))$module_menu[] = Array("index.php?module=Home&action=discoverydashboard", "Discovery Dashboard" ,"semi_DiscoveryDahboard", 'Home');
Share

{ 0 comments }

Get Sugar CSS and JS in your files

April 25, 2011

Hey all, how many times have you made some php/html/smarty template files and been wondering how to get SugarCRM CSS and JS in it. Well here is the solution for you:   <?php /** * @author Milos Miric aka eitrix @ eontek.rs * */ $themeObject = SugarThemeRegistry::current(); // get css $css = $themeObject->getCSS(); // get

Read the full article →

Announcing: Microsoft Dynamics CRM 2011 Customization and Configuration Exam

April 21, 2011

image

Exam MB2-866: Microsoft Dynamics CRM 2011 Customization and Configuration has just been released. This certification exam measures your ability to understand and articulate how to customize and configure Microsoft Dynamics CRM 2011 including configuring a Microsoft Dynamics CRM organizational structure, managing users & teams and security, customizing attributes and entities, customizing relationships and mappings, configuring auditing, managing forms & views and charts, and implementing a Microsoft Dynamics CRM solution.

Exam Topics Covered:

  • Configuring a Microsoft Dynamics CRM Organizational Structure
  • Managing Users & Teams and Security
  • Customizing Attributes and Entities
  • Customizing Relationships and Mappings
  • Configuring Auditing
  • Managing Forms, Views, and Charts
  • Implementing a Microsoft Dynamics CRM Solution

Audience Profile:

This exam is intended for Microsoft Dynamics CRM Implementation Consultants and Customizers who will configure the application’s organizational settings and customize the application using built-in customization tools.

Cheers,

JaAG

Read the full article →

add where clause for listview data in SugarCRM

February 28, 2011

Hey all, while reading the forum this question came up so here is a way how easily to do it and you can override it in custom folder also, so it will be upgrade safe way. For the example we want for Accounts listview to show only accounts that name is like ‘htc’ We will

Read the full article →

customize search fields and add new one’s in SugarCRM

February 8, 2011

After a lot of time spent working on this i want to share with you how you are able to customize search fields and searchdefs so in the end you can insert a field that will be a search criteria and that field can be from another module related directly or related to a module

Read the full article →