If you are a member of development team I'm sure your friends or maybe you will overwrite CRM customizations; Means,someone will lose customization, or let's say you have to revert customizations back to 1 month ago.
You can use "CRMUtilities-CustomizationBackUp" plugin to get backup of current customizations before importing new one. Once you register this plugin and try to import a customization system will export all current customizations to local folder, so you'll have all versions of customizations.
Download the file which contains required Dll and ReadMe.doc
Customization kaybetmeye son:
Takım arkadaşlarınız sizin özelleştirmelerinizi mi eziyor yada siz güncellemelerinizi unutup kendi customization dosyalarını mı eziyorsunuz, hiç olmadı belirli bir tarihteki customization'lara dönmek mi istiyorsunuz. İşte size CustomizationBackUp plugini.
Yeni herhangi bir özelleştirme yüklemek istediginizde sistem otomatik olarak mevcut tüm özelleştirmeleri belirli bir konuma kopyalar, böylece tüm customization geçmişine sahip olursunuz.
Dosyayı Indir, gerekli Dll ve BeniOku içindedir.
30 Aralık 2009 Çarşamba
30 Kasım 2009 Pazartesi
Why it's not updating owner field of record?
Because most probably you are trying to set ownerid field like:
contact.ownerid = new Owner();
contact.ownerid.type = EntityName.systemuser.ToString();
contact.ownerid.Value = [SystemUserGuid];
which is wrong.
Changing the ownership of a record is not that much easy, you should call another CrmService method, so here is the solution:
SecurityPrincipal securityPrincipal = new SecurityPrincipal();
securityPrincipal.Type = SecurityPrincipalType.User;
securityPrincipal.PrincipalId = new Guid(newOwnerID);
TargetOwnedContact target = new TargetOwnedContact();
target.EntityId = new Guid(contactID);
AssignRequest assignRequest = new AssignRequest();
assignRequest.Assignee = securityPrincipal;
assignRequest.Target = target;
AssignResponse assignResponse = (AssignResponse)crmService.Execute(assignRequest, null, null); //CRMWebServiceCall
Yani diyor ki:
Çünkü büyük ihtimalle ownerid için şöyle bir atama yapıyorsunuz:
contact.ownerid = new Owner();
contact.ownerid.type = EntityName.systemuser.ToString();
contact.ownerid.Value = [SystemUserGuid];
ki yanlış.
Bir kaydın sahibini(owner) değiştirmek o kadar kolay degildir ki bu noktada başka bir webservis çagrısı yapmak durumundasınız. Şu aşağıdaki kod blogu size fikir cerecektir:
SecurityPrincipal securityPrincipal = new SecurityPrincipal();
securityPrincipal.Type = SecurityPrincipalType.User;
securityPrincipal.PrincipalId = new Guid(newOwnerID);
TargetOwnedContact target = new TargetOwnedContact();
target.EntityId = new Guid(contactID);
AssignRequest assignRequest = new AssignRequest();
assignRequest.Assignee = securityPrincipal;
assignRequest.Target = target;
AssignResponse assignResponse = (AssignResponse)crmService.Execute(assignRequest, null, null); //CRMWebServiceCall
contact.ownerid = new Owner();
contact.ownerid.type = EntityName.systemuser.ToString();
contact.ownerid.Value = [SystemUserGuid];
which is wrong.
Changing the ownership of a record is not that much easy, you should call another CrmService method, so here is the solution:
SecurityPrincipal securityPrincipal = new SecurityPrincipal();
securityPrincipal.Type = SecurityPrincipalType.User;
securityPrincipal.PrincipalId = new Guid(newOwnerID);
TargetOwnedContact target = new TargetOwnedContact();
target.EntityId = new Guid(contactID);
AssignRequest assignRequest = new AssignRequest();
assignRequest.Assignee = securityPrincipal;
assignRequest.Target = target;
AssignResponse assignResponse = (AssignResponse)crmService.Execute(assignRequest, null, null); //CRMWebServiceCall
Yani diyor ki:
Çünkü büyük ihtimalle ownerid için şöyle bir atama yapıyorsunuz:
contact.ownerid = new Owner();
contact.ownerid.type = EntityName.systemuser.ToString();
contact.ownerid.Value = [SystemUserGuid];
ki yanlış.
Bir kaydın sahibini(owner) değiştirmek o kadar kolay degildir ki bu noktada başka bir webservis çagrısı yapmak durumundasınız. Şu aşağıdaki kod blogu size fikir cerecektir:
SecurityPrincipal securityPrincipal = new SecurityPrincipal();
securityPrincipal.Type = SecurityPrincipalType.User;
securityPrincipal.PrincipalId = new Guid(newOwnerID);
TargetOwnedContact target = new TargetOwnedContact();
target.EntityId = new Guid(contactID);
AssignRequest assignRequest = new AssignRequest();
assignRequest.Assignee = securityPrincipal;
assignRequest.Target = target;
AssignResponse assignResponse = (AssignResponse)crmService.Execute(assignRequest, null, null); //CRMWebServiceCall
Etiketler:
microsoft crm,
owner,
SecurityPrincipal,
update owner
28 Ekim 2009 Çarşamba
Attach External JavaScript File
I'm sure you have common functions that you are using in many entity's javascript part(onLoad,onChange,onSave). Actually the best inheritance is not copy-paste so you can keep all those functions in one *.js file and while form is loading you can attach to form with the following way.
var script = document.createElement('script');
script.language = 'javascript';
script.src = '/CustomScripts/MyCustomJavascriptFile.js';
document.getElementsByTagName('head')[0].appendChild(script);
script.onreadystatechange = function()
{
if (this.readyState == 'complete' || this.readyState == 'loaded')
{
//You can call your functions here.
}
}
We will be adding some useful functions to this javascript file on next posts.
Televizyonunu yeni açan seyircilerimiz için:
Yapmayın. Öyle bir fonksiyonu lazım olan her entity için sürekli kopyala yapıştır yapmayın, ayıp. Insan gibi bir base javascript dosyanız olsun; gerekli, en az 2 defa kullanılmış fonksiyonları bu dosyada toplayın sonra hangi entity'den istiyorsanız onun pageLoad fonksiyonuna aşagıdaki blog'u yazın, bitsin.
var script = document.createElement('script');
script.language = 'javascript';
script.src = '/CustomScripts/MyCustomJavascriptFile.js';
document.getElementsByTagName('head')[0].appendChild(script);
script.onreadystatechange = function()
{
if (this.readyState == 'complete' || this.readyState == 'loaded')
{
//şimdi burdan paşa paşa çagır fonksiyonunu.
}
}
Sonraki postlarda "işe yarar, ooo helal, yok artık" şeklindeki fonksiyonları ekleyecegiz.
26 Eylül 2009 Cumartesi
Refresh Queue
Don't you want to refresh queue. One of my client was asking this kind of solution. Their complaint was: Even if a new record assigns to queue, they are not able to see that, if they don't click queue or refresher button again. Why it's not like Outlook. Yes, it's really a big deal!
Anyway here is the code for this big problem. I'm posting it because, you may face with this kind of people as well.
We are going to edit "home_workplace.aspx" which is under "Microsoft Dynamics CRM\CRMWeb\Workplace" folder.
add this two javascript function in to script section of page.
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
and add this line in to "function window.onload()" function
Refresher();
so at the and it'll be like this
function window.onload() {
HandleBackButtonIssues("workplace");
<%
if (CurrentUser.WorkplaceStyle == Microsoft.Crm.Caching.WorkPlaceStyles.Sales) {
Response.Write("resetMenuItems(MENU_DEL_ASSIGN);");
}
else {
Response.Write("resetMenuItems(MENU_ALL);");
}
%>
Refresher();
}
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Now on; it'll update the queue list in every 3seconds(or it's up to you).
Buradan açınız:
Kuyrukta listelenen kayıtların otomatik güncellenmesini istemez misiniz? Müşterimden biri bu tarz bir çözüm arıyordu. Şikayetleri şöyleydi ki: Baktıkları kuyruga yeni bir kayıt atanmış olsa dahi, eger yenile butonuna tıklamaz yada o kuyruga yeniden girmezlerse yeni gelen kaydı göremiyorlarmış. Neden Outlook gibi değilmiş. Cidden büyük sorun!
Herneyse böyle büyük bir sorun için aşagıdaki kod parçacıgından faydalanabilirsiniz. Sırf sizin de karşınıza böyle insanlar çıkabilir diye yazıyorum.
"Microsoft Dynamics CRM\CRMWeb\Workplace" klasörü altında ki "home_workplace.aspx" isimli sayfayı biraz düzenleyeceğiz.
Şu sağ elimde görmüş oldugunuz 2 fonksiyonu sayfanın javascript bölümüne ekliyoruz.
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Aşağıda bahsi geçen satırı "function window.onload()" fonksiyonun içine dahil ediyoruz.
Refresher();
sonunda ortaya şöyle bir manzara çıkıyor.
function window.onload() {
HandleBackButtonIssues("workplace");
<%
if (CurrentUser.WorkplaceStyle == Microsoft.Crm.Caching.WorkPlaceStyles.Sales) {
Response.Write("resetMenuItems(MENU_DEL_ASSIGN);");
}
else {
Response.Write("resetMenuItems(MENU_ALL);");
}
%>
Refresher();
}
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Bundan böyle, her kimki kuyruga kayıt atar en geç 3 saniyede görüle.(kaç saniye olacagı size kalmış)
Anyway here is the code for this big problem. I'm posting it because, you may face with this kind of people as well.
We are going to edit "home_workplace.aspx" which is under "Microsoft Dynamics CRM\CRMWeb\Workplace" folder.
add this two javascript function in to script section of page.
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
and add this line in to "function window.onload()" function
Refresher();
so at the and it'll be like this
function window.onload() {
HandleBackButtonIssues("workplace");
<%
if (CurrentUser.WorkplaceStyle == Microsoft.Crm.Caching.WorkPlaceStyles.Sales) {
Response.Write("resetMenuItems(MENU_DEL_ASSIGN);");
}
else {
Response.Write("resetMenuItems(MENU_ALL);");
}
%>
Refresher();
}
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Now on; it'll update the queue list in every 3seconds(or it's up to you).
Buradan açınız:
Kuyrukta listelenen kayıtların otomatik güncellenmesini istemez misiniz? Müşterimden biri bu tarz bir çözüm arıyordu. Şikayetleri şöyleydi ki: Baktıkları kuyruga yeni bir kayıt atanmış olsa dahi, eger yenile butonuna tıklamaz yada o kuyruga yeniden girmezlerse yeni gelen kaydı göremiyorlarmış. Neden Outlook gibi değilmiş. Cidden büyük sorun!
Herneyse böyle büyük bir sorun için aşagıdaki kod parçacıgından faydalanabilirsiniz. Sırf sizin de karşınıza böyle insanlar çıkabilir diye yazıyorum.
"Microsoft Dynamics CRM\CRMWeb\Workplace" klasörü altında ki "home_workplace.aspx" isimli sayfayı biraz düzenleyeceğiz.
Şu sağ elimde görmüş oldugunuz 2 fonksiyonu sayfanın javascript bölümüne ekliyoruz.
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Aşağıda bahsi geçen satırı "function window.onload()" fonksiyonun içine dahil ediyoruz.
Refresher();
sonunda ortaya şöyle bir manzara çıkıyor.
function window.onload() {
HandleBackButtonIssues("workplace");
<%
if (CurrentUser.WorkplaceStyle == Microsoft.Crm.Caching.WorkPlaceStyles.Sales) {
Response.Write("resetMenuItems(MENU_DEL_ASSIGN);");
}
else {
Response.Write("resetMenuItems(MENU_ALL);");
}
%>
Refresher();
}
function RefreshPage() {
crmGrid.Refresh();
}
function Refresher() {
setInterval('RefreshPage()', 30000 );
}
Bundan böyle, her kimki kuyruga kayıt atar en geç 3 saniyede görüle.(kaç saniye olacagı size kalmış)
20 Ağustos 2009 Perşembe
Error on Entity Creation :'(
If you are getting exceptions like:
EntityService.Create caught exception: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated
ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.
You should configure server's registry settings. These errors are related with Sql connection and execution timeout problem. And Oscar goes to Solution:
Create a *.reg file and register to your system:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\MSCRM]
"OLEDBTimeout"=dword:00086400
"ExtendedTimeout"=dword:01000000
Or:
To registry;
Create 2 DWord typed key "OLEDBTimeout" and "ExtendedTimeout" and set their values to "86400" and "1000000" (decimal). Reset IIS and be Happy.
Siz nasıl diyor:
Eğer ki şu şekil hatalar alıyorsanız ki bunlar “iflit” oldugum hatalardır. (iflit’I cümle içinde kullandıgım ve ingilizce tercümesini de yapmadıgım icin güçlüyüm, cesurum, hazırım.(bkz:komando))
EntityService.Create caught exception: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated
ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.
Temelde bu hatalar sql bağlantıları ile ilgili. Timeout hatası alması yüzünden isteğinizi yerine getiremeyen CRM ve şu şekil bir çözümle bu soruna bir dur demektedir.
Ister aşagıda italık olarak yazdıgım kısmı *.reg file olarak kaydedin ve çift tıklamak suretiyle bırakın sisteminize nüfüz etsin:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\MSCRM]
"OLEDBTimeout"=dword:00086400
"ExtendedTimeout"=dword:01000000
Yada: Registry açılır; “HKEY_LOCAL_MACHINE > Software > Microsoft > MSCRM” altına
“OLEDBTimeout” ve “ExtendedTimeout” isminde iki Dword anahtar ve bunlara da sırasıyla “86400” ve “1000000” decimal değerleri atanır. IIS reset’I müteakip Mutlu olunur.
EntityService.Create caught exception: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated
ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.
You should configure server's registry settings. These errors are related with Sql connection and execution timeout problem. And Oscar goes to Solution:
Create a *.reg file and register to your system:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\MSCRM]
"OLEDBTimeout"=dword:00086400
"ExtendedTimeout"=dword:01000000
Or:
To registry;
Create 2 DWord typed key "OLEDBTimeout" and "ExtendedTimeout" and set their values to "86400" and "1000000" (decimal). Reset IIS and be Happy.
Siz nasıl diyor:
Eğer ki şu şekil hatalar alıyorsanız ki bunlar “iflit” oldugum hatalardır. (iflit’I cümle içinde kullandıgım ve ingilizce tercümesini de yapmadıgım icin güçlüyüm, cesurum, hazırım.(bkz:komando))
EntityService.Create caught exception: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has been terminated
ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.
Temelde bu hatalar sql bağlantıları ile ilgili. Timeout hatası alması yüzünden isteğinizi yerine getiremeyen CRM ve şu şekil bir çözümle bu soruna bir dur demektedir.
Ister aşagıda italık olarak yazdıgım kısmı *.reg file olarak kaydedin ve çift tıklamak suretiyle bırakın sisteminize nüfüz etsin:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\MSCRM]
"OLEDBTimeout"=dword:00086400
"ExtendedTimeout"=dword:01000000
Yada: Registry açılır; “HKEY_LOCAL_MACHINE > Software > Microsoft > MSCRM” altına
“OLEDBTimeout” ve “ExtendedTimeout” isminde iki Dword anahtar ve bunlara da sırasıyla “86400” ve “1000000” decimal değerleri atanır. IIS reset’I müteakip Mutlu olunur.
23 Haziran 2009 Salı
Customize the Queue View ?!
Kısıtlamalar yüzünden can sıkıcı bir hal alan queue'lar ve onların "Olmaz olsun" dedirten özellikleri. Müşteriler haklı olarak queue kullanmak ister, "Bunu yaparbilir miyiz? yapamayız. Bu olur mu? oluru yok.". Hayır, hiç hoş değil. Sizde benim gibi queue view'e kolon eklemek yada varsayılan sıralamayı değiştirmek isterseniz şunları yapabilirsiniz.
_MSCRM isimli CRM veritabanının tabloları arasından "MetadataSchema.Entity" isimli tablosuna gerçekleştirilecek şöyle bir update script çalıştırılır ve IIS yeniden başlatılır, böylece yeni bir aleme adım atılır.
UPDATE MetadataSchema.Entity SET IsCustomizable = 1 WHERE [Name] = 'Queueitem'
Şu andan itibaren "customize entities" bölümünde QueueItem'ları görebilir ve View'ları değiştirebilir ve yayınlayabilirsiniz.
NOT: Yayınlamalarınız bittikten sonra " IsCustomizable = 0" yapmayı ve IIS'i yeniden başlatmayı unutmayın, üzülürsünüz.
English Subtitle:
Queue's and their limited features. Clients want to use queues but for each time. "Can we implement this? No, we can't. Is it possible ? No way." which is not nice. If you want to add columns or maybe change the sort-order column for queueview you can use this solution.
Run update script which is specified below for MetadataSchema.Entity table which is in CRM database (_MSCRM ), than restart IIS and say "hi".
UPDATE MetadataSchema.Entity SET IsCustomizable = 1 WHERE [Name] = 'Queueitem'
Now on in "Customize Entities" section you will able to see "QueueItem" and you can update views and publish them.
PS: After publishment don't forget to set "IsCustomizable = 0 " and restart IIS. Otherwise you migth be sad.
UPDATE MetadataSchema.Entity SET IsCustomizable = 1 WHERE [Name] = 'Queueitem'
Şu andan itibaren "customize entities" bölümünde QueueItem'ları görebilir ve View'ları değiştirebilir ve yayınlayabilirsiniz.
NOT: Yayınlamalarınız bittikten sonra "
Queue's and their limited features. Clients want to use queues but for each time. "Can we implement this? No, we can't. Is it possible ? No way." which is not nice. If you want to add columns or maybe change the sort-order column for queueview you can use this solution.
Run update script which is specified below for MetadataSchema.Entity table which is in CRM database (
UPDATE MetadataSchema.Entity SET IsCustomizable = 1 WHERE [Name] = 'Queueitem'
Now on in "Customize Entities" section you will able to see "QueueItem" and you can update views and publish them.
PS: After publishment don't forget to set "IsCustomizable = 0 " and restart IIS. Otherwise you migth be sad.
Etiketler:
customize queue view,
microsoft crm,
queue view
14 Haziran 2009 Pazar
Changing Available Entity Types in Lookup
Sizede CRM ile ilgili garip isteklerin geldiği olmuştur, bana gelenlerden sonuncusu Case(Incident)'in "Customer" bilgisinin yalnızca Contact entitysi ile ilişkilendirilmesiydi. Malumunuz normalde contact yada account entity seçebiliyorsunuz, bunu contact ile sınırlandırmak istediler. Eyvallah dedim ve şu aşağıda açıkladıgım çözümü uyguladım:
Case entity'sinin form load event'i edit edilir ve biter:
crmForm.all.customerid.setAttribute("lookuptypes", "2"); //2: Contact entity code
Siz değiştirmeden önce default kod:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2"); //1: Account entity code
Yok, o hiç aklınızdan geçmesin, "o zaman lead'ler içinde case oluşturabiliriz" diyenleriniz için tokat tadında cevap:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2,4"); //4: Lead entity code
derseniz, Evet lead'leri lookup'larda görürsünüz ancak sanmayın ki çalışacak.
Entity code'larını nasıl ögrenebilirim diyenler için gelsin:
http://[server]/sdk/list.aspx
Metadata'nın nimetleri bu linkten tüm entity,attribute,relations bilgilerine ulaşabilirsiniz.
Do you speak English, I don't:
I'm sure that you are also recieving weird requests from your clients. My client requested to restrict Customer field relation which is in Case(Incident) entity with only contact entity. You know normally it's related with contact and account entity. I said "OK" and applied this solution:
OnLoad event of case entity:
crmForm.all.customerid.setAttribute("lookuptypes", "2"); //2: Contact entity code
Before you update the code it was working like:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2"); //1: Account entity code
No, you should not think about that "If I configure lookup I can create case for leads also".
crmForm.all.customerid.setAttribute("lookuptypes", "1,2,4"); //4: Lead entity code
You will able to see Lead records in customer lookup but don't think that you will able to create successfully.
For users who is asking "How to get entity codes?":
http://[server]/sdk/list.aspx
You can get all entities, attributesi , relations etc.
Case entity'sinin form load event'i edit edilir ve biter:
crmForm.all.customerid.setAttribute("lookuptypes", "2"); //2: Contact entity code
Siz değiştirmeden önce default kod:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2"); //1: Account entity code
Yok, o hiç aklınızdan geçmesin, "o zaman lead'ler içinde case oluşturabiliriz" diyenleriniz için tokat tadında cevap:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2,4"); //4: Lead entity code
derseniz, Evet lead'leri lookup'larda görürsünüz ancak sanmayın ki çalışacak.
Entity code'larını nasıl ögrenebilirim diyenler için gelsin:
http://[server]
Metadata'nın nimetleri bu linkten tüm entity,attribute,relations bilgilerine ulaşabilirsiniz.
Do you speak English, I don't:
I'm sure that you are also recieving weird requests from your clients. My client requested to restrict Customer field relation which is in Case(Incident) entity with only contact entity. You know normally it's related with contact and account entity. I said "OK" and applied this solution:
OnLoad event of case entity:
crmForm.all.customerid.setAttribute("lookuptypes", "2"); //2: Contact entity code
Before you update the code it was working like:
crmForm.all.customerid.setAttribute("lookuptypes", "1,2"); //1: Account entity code
No, you should not think about that "If I configure lookup I can create case for leads also".
crmForm.all.customerid.setAttribute("lookuptypes", "1,2,4"); //4: Lead entity code
You will able to see Lead records in customer lookup but don't think that you will able to create successfully.
For users who is asking "How to get entity codes?":
http://
You can get all entities, attributesi , relations etc.
Etiketler:
available entity types in lookup,
customize lookup,
lookup,
microsoft crm
4 Haziran 2009 Perşembe
Who deleted my "System Customizer" role ?
Bu yazıyı okuyorsanız sisteminizdeki "System Customizer" rolüne bişeyler olmuş demektir ve muhtemelen hafif bir titreme ile "lan başkasının da başına gelmiş olmalı" diyorsunuz. Merak etmeyin, geldi. Daha fazla titretmeden çözümü söyleyelim:
Settings->Administration->Security Roles'den yeni bir "System Customizer" oluşturulacak, ister başka bir CRM sisteme bakarak haklarını verin, isterseniz System Administrator rolünü kopyalayın sonra güncelleyin.
Yinede basit bir query'e hayır demem.
SELECT [RoleTemplateId],[Name]
FROM [CET_MSCRM].[dbo].[RoleBase]
WHERE Name = 'System Customizer'
For English Press "2"
If you are reading this article, it means something is happened to your "System Customizer" role and your are saying that "Somebody should face with this issue before", don't worry: they are. Let me tell the solution:
Go to:
Settings->Administration->Security Roles. We'll create new security role which called by "System Customizer". For rigths, you can copy system administrator role and update, you can check from another CRM system or leave it empty.
I think I don't need to say , "be sure that you updated all necessary rows".
But a simple query will be useful.
SELECT [RoleTemplateId],[Name]
FROM [CET_MSCRM].[dbo].[RoleBase]
WHERE Name = 'System Customizer'
Settings->Administration->Security Roles'den yeni bir "System Customizer" oluşturulacak, ister başka bir CRM sisteme bakarak haklarını verin, isterseniz System Administrator rolünü kopyalayın sonra güncelleyin.
- Şimdi CRM database'ine gidelim.
- RoleTemplateBase tablosunu açıp "System Customizer" RoleTemplateId değerini kenara yazalım.
- RoleBase tablosuna gidelim, Name'i "System Customizer" olan her satır için RoleTemplateId kolonuna o az önce kenara yazdıgımız guid değeri yapıştıralım.
Yinede basit bir query'e hayır demem.
SELECT [RoleTemplateId],[Name]
FROM [CET_MSCRM].[dbo].[RoleBase]
WHERE Name = 'System Customizer'
For English Press "2"
If you are reading this article, it means something is happened to your "System Customizer" role and your are saying that "Somebody should face with this issue before", don't worry: they are. Let me tell the solution:
Go to:
Settings->Administration->Security Roles. We'll create new security role which called by "System Customizer". For rigths, you can copy system administrator role and update, you can check from another CRM system or leave it empty.
- Go in to CRM Database.
- In the RoleTemplateBase table, copy the RoleTemplateId guid value for the "System Customizer".
- Go to the RoleBase table and paste that guid value into the RoleTemplateId column for each record that has the name "System Customizer".
I think I don't need to say , "be sure that you updated all necessary rows".
But a simple query will be useful.
SELECT [RoleTemplateId],[Name]
FROM [CET_MSCRM].[dbo].[RoleBase]
WHERE Name = 'System Customizer'
Etiketler:
entity create problem,
microsoft crm,
security role,
system customizer
12 Mart 2009 Perşembe
Response.Write("Hello World");
Uzun bir kararsızlıktan sonra "yok olm verdana daha güzel" diyerek kısa soluklu olacagını düşündügüm blog hayatıma işte bu satırlarla başladım.
"Bu ney ki" tadında bir deneyim benim açımdan. Niye böyle bişeye başladıysam, millete mi özendim ne.?!
Amaç ? Walla hayatı paylaşmaktan yana değilim, hele beraber gülüp, beraber ağlayalım geyikleri falan uzak ara geride kalsın. Maksat havadan, sudan, CRMden falan incir objesini doldurmayacak, bu sebeple "object reference not set" hatası alacagım "çay içerek sabahlanan öğrenci evi muhabbeti"ni asci kullanarak oluşturmaktır.
Blog sözü: yakala-logla-fırlat
"Bu ney ki" tadında bir deneyim benim açımdan. Niye böyle bişeye başladıysam, millete mi özendim ne.?!
Amaç ? Walla hayatı paylaşmaktan yana değilim, hele beraber gülüp, beraber ağlayalım geyikleri falan uzak ara geride kalsın. Maksat havadan, sudan, CRMden falan incir objesini doldurmayacak, bu sebeple "object reference not set" hatası alacagım "çay içerek sabahlanan öğrenci evi muhabbeti"ni asci kullanarak oluşturmaktır.
Blog sözü: yakala-logla-fırlat
Kaydol:
Kayıtlar (Atom)