Posts

Showing posts from April, 2021

Mental Accounting

Personal finance or literacy is the most neglected area of ​​our education system, Generally, people do not bother to learn, but the reality is that money always matters and personal finance is a very important affair for every person on this planet. Dollars and Sense is a well-written book about this subject  by Dan Arelli and Jeff Krasler. This article topic is inspired by this book, while reading this book, I thought that it requires everyone to know, especially my family, friends and acquaintances. While many points can be discussed from this book, Mental Accounting is the most fascinating subject to discuss because it is the truth in my life and I have observed that  other people follow similar practices. After this knowledge, I have decided to eradicate these habits. Although The idea of Mental Accounting was first introduced by Dick Thaler. While there are many psychology of pricing which business and markets always try on customer in the form of discounts, coupons, deals and

Success Journey of Exam PL-200 (Microsoft Power Platform Functional Consultant)

Earlier this year, I took the challenge to earn some certifications related to Power Platform, CE and Azure. After the announcement of a massive power platform, the epidemic has taken us under house arrest. In this dark side, it gave an opportunity to study more at home. Although, I learned more, I could not appear in any certification exam due to different reasons. Nonetheless, In this current year, I took resolution to earn some Microsoft certification. Initially, My manager assigned MB-200 to earn , but I updated him regarding retirement of this certification and requested to assign me PL-200 and then start my mission PL-200. I began my journey with  Microsoft Learning path  to this endeavor. It gave me some knowledge about various technologies (power apps, power automate, dataverse etc.), exam syllabus and type of questions, but it did not instill confidence in reading for the first time. Nevertheless, I resumed reading the entire module of this exam teaching path and made short no

Plugin Issue troubleshoot : Unable to cast object of type 'Microsoft.Xrm.Sdk.Entity' to type 'CRM.Sales.Model.EarlyBound.t_accountteam'.

 Issue : Unable to cast object of type 'Microsoft.Xrm.Sdk.Entity' to type 'CRM. Sales. Model. EarlyBound .t_accountteam'. During the Plugin development, t_accountteam early bound class was unable to type cast into Xrm.sdk.Entity during the runtime. Resolution : On the deep dive on this issue, use of the early bound in the C# Code, it needs to call  EnableProxyTypes method in the OrganizationServiceProxy. Example : string orgUrl = "https://xxxxxxxx/XRMServices/2011/Organization.svc";             IOrganizationService _service = null;             if (orgUrl != null)             {                 Uri OrganizationUri = new Uri(orgUrl);                 var credentials = new ClientCredentials();                 credentials.Windows.ClientCredential = (NetworkCredential)CredentialCache.DefaultCredentials;                 System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;