tips & tricks


Calendario
luglio 2024
lmmgvsd
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

Call Report from ISV

Call Report from ISVWhen online we can use the reporting services url with the render to pdf querystring parameterhttp://localhost/ReportServer/Pages/ReportViewer.aspx?%2f<orgname folder>%2fReport1&rs:Command=Render&rs:Format=PDFoffline:http://localhost:2525/crmreports/viewer/viewer.aspx?id=<reportid>&helpID=<report RDL name> &action=filterYou can write a jscript function to manage online and offline:<Button Icon="/_imgs/btn_off_lookup.gif" &nbs 
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 11 apr 2011 Ore. 15.41

window.opener

WINDOW.OPENER Ho provato diverse volte a utilizzare questo codice come diceva l'sdk, ma senza successo:  var oParentCrmForm = window.opener.document.all.crmForm;Poi cercando su google ho trovato questo: var oParentCrmForm = window.opener.parent.document.all.crmForm; e finalmente ha funzionato!   function isCompetitor() {     //var oParentCrmForm = window.opener.document.all.crmForm;      var oParentCrmForm = window 
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 07 mar 2011 Ore. 10.43

Recuperare i Valori di una Picklist

SELECT StringMap.Value,* FROM StringMap       INNER JOIN MetadataSchema.Entity             ON StringMap.ObjectTypeCode = MetadataSchema.Entity.ObjectTypeCode WHERE StringMap.AttributeName Like 'address1_addresstypecode' AND MetadataSchema.Entity.Name Like 'account'   
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 04 mar 2011 Ore. 15.22

Change Marketing List Member view

This article describes how to add or remove fields from  Marketing List Member view: Normal 0 14 false false false IT X-NONE X-NONE  
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 13 dic 2010 Ore. 12.42

runas

Per lanciare un programma con un'altro utente basta lanciare il programma da lilnea di comando con i segueti parametri:runas /netonly /user:Dominio\Utente "C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\SqlWb.exe" 
Leggi tutto il post...
Categoria: CRM 4.0
martedì, 19 ott 2010 Ore. 11.39

Batch IISreset

Batch File to restart ColdFusion MX@echo off REM - File: restart.bat REM - Description: Restart's Services REM - Author: echo Restarting Service... echo ====================================================== net stop "Service Name" net start "Service Name" oppure IISreset.exeecho ====================================================== echo Service Restarted Batch file to restart IIS@echo off REM - File: iisrestart.bat REM - Description: Restart's IIS (Web) REM - Author: REM - ADD RE 
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 08 ott 2010 Ore. 15.03

Export to Excell Dynami WorkSheet

Forcing CRM application to always run live queries using fetchXMLYou can force an on-premise deployment to always serve dynamic Excel worksheets using the fetchXML route by adding a registry key to the machine running CRM application server role. Add a type DWORD registry key named UseWebQueryForLiveExport, with value set to 1, under the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSCRM hive. Using the above method will now force all newly exported dynamic Excel sheets with CRM data to p 
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 17 set 2010 Ore. 16.44

Abilitare le Hotfix delle Rollup

Normal 0 14 false false false IT X-NONE X-NONE MicrosoftInternetExplorer4  
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 04 giu 2010 Ore. 11.57

Configurazione Trace Crm

Normal 0 14 false false false IT X-NONE X-NONE MicrosoftInternetExplorer4  
Leggi tutto il post...
Categoria: CRM 4.0
mercoledì, 17 mar 2010 Ore. 11.12

Jscript per risalire alla ParentForm

Normal 0 14 false false false IT X-NONE X-NONE MicrosoftInternetExplorer4  
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 06 lug 2009 Ore. 15.23

ISV Button Create From Entity

Normal 0 14 false false false IT X-NONE X-NONE MicrosoftInternetExplorer4  
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 03 lug 2009 Ore. 16.56

Ascentium CrmService - CRM JavaScript SDK

Normal 0 14 false false false IT X-NONE X-NONE MicrosoftInternetExplorer4  
Leggi tutto il post...
Categoria: CRM 4.0
giovedì, 02 lug 2009 Ore. 12.38

Calo prestazioni dei bulk delete

In seguito a indagini con SQL Profiler un mio collega ha individuato la causa del peggioramento delle prestazioni dei bulk delete riguardanti un numero elevato di records.  Si tratta di un uso eccessivo di table variables (funzione CRM dbo.fn_CollectForCascadeDelete). Le table variables sono messe in cache nel tempdb e vi rimangono fino al riavvio del servizio SQL Server (il tempdb è ricreato). Una alternativa al riavvio consiste nello svuotamento della cache prima di effettuare  
Leggi tutto il post...
Categoria: CRM 4.0
mercoledì, 17 giu 2009 Ore. 10.18

FetchXml

La fetch è uno strumento molto utile e veloce se si devono fare dei controlli. Una funzione per gestire comodamente le fetch Xml in crm. public static int GetParticipationCount(string entityName, string attributeName, object attributeValue)      {         string fetchXml = @"   <fetch mapping=""logical"" aggregate=""true"">   <entity name=""{0}"">    <attribute name 
Leggi tutto il post...
Categoria: CRM 4.0
mercoledì, 10 giu 2009 Ore. 14.33

CRM Client Local Data Group

Gestire i Local DataGroup nel CRM4.0 non è certo cosa semplice, visto che bisogna configurarli per ogni singolo client su cui è installato il crm outlook client. Purtroppo ancora non cè un modo centralizzato da dove poter andare a settare i LDG, ma si può andare sul DB a capire la configurazione per ogni client, quindi controllare che sia corretta, con una query del tipo: SELECTSU.fullname,SU.mp_code,SU.businessunitidname,UQB.name,UQB.FetchXmlFROM [OrgName_MSCRM].[dbo].UserQueryBase UQB&n 
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 08 giu 2009 Ore. 17.17

Gestione dei Messaggi lato Client

Buondì, Un modo per riuscire a gestire i messaggi lato client, e quindi via jscript, è creare un'entità custom che possiamo chiamare "Custom Messages". In questa entità possiamo mettere una coppia (Key ,Value) e richiamare questa entità via Ajax. In questo modo possiamo gestire comodamente anche il cambio di lingua. Ecco un esempio di codice: function GetCustomMessage(key){    var parameter = new Parameter("key", key);    var params = new Array(parameter); & 
Leggi tutto il post...
Categoria: CRM 4.0
venerdì, 29 mag 2009 Ore. 12.36

ROLLUP 4

La Rollup 4 del CRM 4.0 è comprensiva di tutte le rollup uscite. L'installazione è molto semplice, c'è un wizzard molto veloce e sembra che dopo funzioni tutto. Bisogna lanciare tutti i setup necessari sul Client, sul Server ecc... 
Leggi tutto il post...
Categoria: CRM 4.0
mercoledì, 27 mag 2009 Ore. 16.48

Deploy MS CRM

Articolo interessante http://technet.microsoft.com/en-us/magazine/2009.02.crm.aspx  
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 20 apr 2009 Ore. 13.17

REDEPLOY

 REDEPLOY Questi i link dove posso trovare informazioni utili: http://support.microsoft.com/kb/952934/en-us http://grounding.co.za/blogs/trevor/archive/2008/03/08/redeploying-crm-4-0-part-1-of-2.aspx 
Leggi tutto il post...
Categoria: CRM 4.0
lunedì, 20 apr 2009 Ore. 13.15

Come Fare una STATISTICA ACCESSI AL CRM

Purtroppo tra i vari report e ricerche che ti permette di creare, il crm non ti permette di fare una Statistica su quante persone accedono al crm(o non sono riuscito a trovarla.. ;) ), e quindi quante persone lo utilizzano veramente sia per il flusso di lavoro che per i vari strumenti come le statistiche. Però c'è un piccolo trusco per poter arrivare a questa informazione... Anzitutto bisogna avere abilitato il log di IIS per il sito del CRM, altrimenti e tutto inutile. Infatti l'unico pos 
Leggi tutto il post...
Categoria: CRM 4.0
mercoledì, 11 mar 2009 Ore. 11.15
Archivio Posts
Anno 2020

Anno 2018

Anno 2015

Anno 2013

Anno 2011

Anno 2010

Anno 2009

Anno 2008
Statistiche
  • Views Home Page: 13.996
  • Views Posts: 56.787
  • Views Gallerie: 2.837
  • n° Posts: 117
  • n° Commenti: 1
Copyright © 2002-2007 - Blogs 2.0
dotNetHell.it | Home Page Blogs
ASP.NET 2.0 Windows 2003