Hello,
I am developing a solution on Dynamics CRM OL.
I am trying to add new Area and it should land on custom Dashboard.
When I have added that using XrmToolBox Sitemap editor, it is showing me 'Unknown#' in the navigation.
Even I tried to add area by adding direct below XML in tool :
<Area Id="FRAN" ResourceId="Area_Fran" DescriptionResourceId="Fran_Description" Icon="/_imgs/sales_24x24.gif" ShowGroups="true" IntroducedVersion="7.0.0.0">
<Group Id="Customers" ResourceId="Group_Customers" DescriptionResourceId="Customers_Description" IntroducedVersion="7.0.0.0">
<SubArea Entity="account" GetStartedPanePath="Accounts_Web_User_Visor.html" GetStartedPanePathAdmin="Accounts_Web_Admin_Visor.html" GetStartedPanePathAdminOutlook="Accounts_Outlook_Admin_Visor.html" GetStartedPanePathOutlook="Accounts_Outlook_User_Visor.html" Id="nav_accts" DescriptionResourceId="Account_SubArea_Description" AvailableOffline="false" PassParams="false" />
<SubArea Id="nav_conts" DescriptionResourceId="Contact_SubArea_Description" Entity="contact" GetStartedPanePath="Contacts_Web_User_Visor.html" GetStartedPanePathAdmin="Contacts_Web_Admin_Visor.html" GetStartedPanePathOutlook="Contacts_Outlook_User_Visor.html" GetStartedPanePathAdminOutlook="Contacts_Outlook_Admin_Visor.html" IntroducedVersion="7.0.0.0" />
</Group>
<Group Id="SFA" ResourceId="Area_Sales" DescriptionResourceId="Sales_Description" IntroducedVersion="7.0.0.0">
<SubArea Id="nav_leads" DescriptionResourceId="Lead_SubArea_Description" Entity="lead" GetStartedPanePath="Leads_Web_User_Visor.html" GetStartedPanePathAdmin="Leads_Web_Admin_Visor.html" GetStartedPanePathOutlook="Leads_Outlook_User_Visor.html" GetStartedPanePathAdminOutlook="Leads_Outlook_Admin_Visor.html" IntroducedVersion="7.0.0.0" />
<SubArea Id="nav_oppts" DescriptionResourceId="Opportunity_SubArea_Description" Entity="opportunity" GetStartedPanePath="Opportunities_Web_User_Visor.html" GetStartedPanePathAdmin="Opportunities_Web_Admin_Visor.html" GetStartedPanePathOutlook="Opportunities_Outlook_User_Visor.html" GetStartedPanePathAdminOutlook="Opportunities_Outlook_Admin_Visor.html" IntroducedVersion="7.0.0.0" />
<SubArea Id="nav_comps" DescriptionResourceId="Competitor_SubArea_Description" Entity="competitor" IntroducedVersion="7.0.0.0" />
</Group>
</Area>
Can anyone please suggest what is missing here and what should I do to land on custom Dashboard on clicking of that area?
Thank you.