Articles

Affichage des articles du 2018

Quick Create, open created record

The idea is , when you create a record with quick create, to redirect directly on created record. sometime you have a yellow button on the top right but in my case the yeallow button with the link to the new created record did not appear. then I decide to redirect with JS then yes we have function in a function function MyBaseFunction()  Xrm.Utility.openQuickCreate("incident", recordId, parameters).then function (lookup) { successCallback(lookup); }, function (error) { errorCallback(error); }  );     function successCallback(lookup) {         setTimeout(function () { Xrm.Page.data.entity.refresh(); }, 1000);         Xrm.Utility.openEntityForm("incident", lookup.savedEntityReference.id, null, null);         setTimeout(function () { Xrm.Page.data.entity.refresh(); }, 1000);     }     // **** Function called on error.     function errorCallback(e) {  // *** No new contact created, which is an error we can ignore!         aler

Make CRM Faster

it s quite the same logic as here https://www.linkedin.com/pulse/recently-viewed-items-performance-issuebug-ziv-ben-or/ the idea is too clean the historic of recently viewed item   static void Main(string[] args)         {             ConnectToCRM();             var fetchXml = $@" <fetch>   <entity name='userentityuisettings'>     <attribute name='userentityuisettingsid' />     <attribute name='recentlyviewedxml' />     <attribute name = 'lastviewedformxml' />     <filter type='and'>       <condition attribute='recentlyviewedxml' operator='not-null' />     </filter>   </entity> </fetch>";                             string max;             Console.WriteLine("How Manny history do you want to keep Minimum is 1: ");             max = Console.ReadLine();             if (Convert.ToInt32(max)<=0)             {                 C

How to connect to Crm Dynamics On Premis 2016 with Consol App

private static void ConnectToCRM() { try { string OrganizationURL = ConfigurationManager.AppSettings["OrganizationURL"]; OrganizationURL += "/XRMServices/2011/Organization.svc"; _orgServiceManagement = ServiceConfigurationFactory.CreateManagement<IOrganizationService>(new Uri(OrganizationURL)); ClientCredentials Credentials = new ClientCredentials(); Credentials.Windows.ClientCredential = (NetworkCredential)CredentialCache.DefaultCredentials; _service = new OrganizationServiceProxy(_orgServiceManagement, Credentials); //LogHelper.Info("\r\nConnected to {0}\r\n ", OrganizationURL); WhoAmIRequest req = new WhoAmIRequest(); WhoAmIResponse resp = (WhoAmIResponse)_service.Execute(req); // LogHelper.Info("User ID: " + resp.UserId); //Guid currentUserId = resp.UserId; } catch (Exception ex) { Console.WriteLine(); Console.WriteLine("An error occured trying to connect to the MS CRM Server.\nPlease verify your login data.&q

R Basic querry

While learning R (from scratch) I fall on kaggle. It propose some competition between user to find the best model of prediction. It's my first Big Data Experience, then I am a little bit lost. Then First  I have to admit that I follow "How To" I will post here all my generic basic R data manipulation. Create a list of value unusual_title<-c('Dona', 'Lady', 'the Countess','Capt', 'Col', 'Don',                   'Dr', 'Major', 'Rev', 'Sir', 'Jonkheer') Update the value Title by "unusual Title" if the title is in the liste previously created titanic$title[titanic$title %in% unusual_title]<-'Unusual Title' Sapply is a function that apply on each item of a dataSet. on each name of the DataSet we apply a Split on the first ,or , and keep the first part this part go in surnamecolum, titanic$surname<-sapply(titanic

ClickDimensions : Fill Landing page Field With URL paramater

The answer is here http://blog.clickdimensions.com/pre-filling-forms-using-iframes/ But After That I still have a small question, what if the field is empty in the CRM Dynamics. when you use profiling field for email template it s : ${Recipient.contact.firstname[0] !''} but when it's in the url you should use : ${Recipient.contact.firstname[0] !} then at the end the url should look likes http://analytics-eu.clickdimensions.com/domain/pages/page.html?firstname=${Recipient.contact.firstname[0]!}

CRM Dynamics : Improve Form with Tab Menu

I was wondering how to have all data user need in only one screen. Then I Googled and found this : http://www.itaintboring.com/dynamics-crm/dynamics-crm-creating-navigation-tabs/ I want to always keep Basic Information of the contact/account  we have tabs, and we can collapse it or uncollapse it If we collapse a a tab all the width of the screen is hidded.  Then I decided to try to work with section and not tabs. My idea was to have a Tabs with 3 column and only the column of the middle would be dynamic in link with the tab menu Then I created 1 Tab with 3 column and all the section in the column of the middle have  A name that start by "NavSection_"   The label hidded Are hidded by default unless the first <html><head><meta charset= "utf-8" > <style> * { margin: 0 ; padding: 0 ; } .activeTab { background-colo

MS CRM Dynamics : Label in the form

OOB there is no way to create a Label on the form without value. Then I was wondering if it was possible with another Way. The answer is Yes !!! We will do it with Webresource. And we will give as parameter, the label we want. Then first I Googled how to pass a parameter to a webresource. I found this : http://dynamicscrmcoe.com/passing-custom-parameters-web-resources/ In this blog they give multiple parameter but, we can work with only one <html> <Head> <style> * { margin: 0 ; padding: 0 ; } label { color: #0080ff ; font-size: 25px ; text-align: left ; font-family: Segoe UI , Tahoma , Arial; text-decoration: underline ; font-weight: bold ; } </style> <script type= "text/javascript" src= "../../ClientGlobalContext.js.aspx" ></script> <script type= "text/javascript" > debugger ; var CRMCustomParam