Hiding custom buttons in CRM 4.0 Toolbar - Düğmeleri Gizlemek

21. Ağustos 2008

CRM 3.0 içerisinde sadece document.getElementById("").style.display = "none" kodu yardımıyla toolbardan bir düğmeyi silmemiz mümkündü.

Bu CRM 4.0 ile çalışmayacaktır. CRM Form'u yüklendiğinde düğme ID'lerinin çalışma anında oluştuğu görülüyor. Bazen bir düğmenin adı ISV_New_1_MyButtonID iken başka bir zaman ISV_New_39_MyButtonID olabiliyor.

Formun OnLoad() event'ine aşağıdaki kodu ekleyerek düğme gizleme işlemini gerçekleştirebilirsiniz.

----

In CRM 3 it was possible to hide a button on a toolbar just by calling the document.getElementById("").style.display = "none" method.

This will NOT work in CRM 4.0. The ID of the button seems to be generated when the CRM Form is loaded. One time it might be ISV_New_1_MyButtonID the other time it might be ISV_New_39_MyButtonID.

To do so use the following javascript in the forms OnLoad event:

HideButton = function()
{
 
  var ULListItems = document.getElementById("mnuBar1").rows[0].cells[0].getElementsByTagName("UL")[0].getElementsByTagName("LI");
  for(var i=0; i-1)
  { 
    if (ULListItems[i].id.indexOf("MyButtonID") > -1)
    {
      ULListItems[i].style.display =
"none";
    } 
  }
}

// Form yüklendiğinde kodu çalıştır.
// Execute the function when loading the form.

HideButton();


// Form yeniden yüklendiğinde kodu çalıştır.
// Execute the function when the form is resized.

window.onresize = HideButton;

Dynamics CRM , , , , , , , , , , ,

Advance Data Migration Map Editor for CRM 4.0 - CRM 4.0 için Veri Aktarımı

3. Nisan 2008

Advance Data Migration Map Editor for CRM 4.0

Microsoft Dynamics CRM 4.0 için Microsoft CRM Hindistan takımı Advanced Data Migration Map Editor isimli bir ürün geliştirdiğini duyurdu. Ürün Microsoft Public License altında kaynak kodları ile birlikte şu adreste yayınlanmaktadır:  http://www.codeplex.com/mscrmmapeditor

Map Editor kullanıcılara Data Migration Manager'da ihtiyaç duyacakları ileri seviyede XML formatlı veri haritaları oluşturmaktadır. 

Ürünün Kullanıcı kitapçığını bu adreste bulabilirsiniz. http://www.codeplex.com/mscrmmapeditor/Release/ProjectReleases.aspx?ReleaseId=11777

----------

Microsoft Dynamics CRM 4.0 provides ‘Data Migration Wizard’ to migrate data from their existing solutions to ‘Microsoft Dynamics CRM 4.0’. They need to have the data migration map which maps source data to target data along with the source data files . This project ‘Map Editor’ helps in creating data migration map (including complex transformation maps, creating lookup maps with lookups in source data which are currently not provided by MSCRM 4.0 Data Migration Wizard) and thus helps in the process of migration. This enables user to create new maps, edit existing maps in MSCRM 4.0, and edit the map xml files that have been saved earlier. The tool aims at providing the users a solution to make their life easier by providing an UI interface to create xml base data maps involving complex transformation maps to be consumed by MSCRM 4.0 Data Migration Wizard.

Note: This release works with On-Premise release of MSCRM 4.0. The Live support will be added in next revision. 

Dynamics CRM , , , , , , , , , , , , , , , , , ,

Microsoft Dynamics CRM 4.0 Software Development Kit - Yazılım Geliştirme Aracı

20. Mart 2008

Rapor oluşturucular, yazılım ve içerik geliştiriciler için olan Microsoft Dynamics CRM 4.0 Software Development Kit (SDK) güncellenmiştir.
Plug-in oluşturmanın yeni yöntemleri, workflow aktiviteleri ile çalıştırma, yeni web servislerini kullanma, veri yönetimi ve daha birçok konuda yeni yazılar ve örnekler içermektedir.

Adres : http://www.microsoft.com/downloads/details.aspx?FamilyID=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&displaylang=en

----

The Microsoft Dynamics CRM 4.0 Software Development Kit (SDK) is for developers, system customizers, and report writers.
It contains all new information about creating plug-ins, working with custom workflow activities, using the new Web services, using new data management features, and much more.

This SDK contains information for developers writing server side code, custom business logic, integration modules, workflow assemblies, and more. It provides an architectural overview of Microsoft Dynamics CRM, the entity model, security model, and Web services. Sample code and walkthroughs guide you through the new features.

The SDK also contains information for developers customizing the Web client or Microsoft Dynamics CRM for Microsoft Office Outlook, including scripting, integration of custom Web pages, sample code, and a detailed user interface style guide.

Look for regular updates to this SDK. Future releases will include the ISV Guide and Report Writers Guide.

link: http://www.microsoft.com/downloads/details.aspx?FamilyID=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&displaylang=en

Dynamics CRM , , , , , , , , , , , , , , , , , , , ,