Hey Guys,
Maybe somebody can point out where the issue is with the RCDC. I have a custom object type called Department in FIM portal and wanted to create a simple interface for it so users can add and edit department fields.
The only two fields that should show on the RCDC is department and divisions(this is the name of the custom field) all the fields work but I keep getting the following error "There's an error in the Department display configuration.Please contact your system administrator"
Below is the RCDC:
<?xml version="1.0" encoding="utf-8"?><!--Copyright (c) Microsoft Corporation. All rights reserved.--><my:ObjectControlConfiguration xmlns:xd="http://schemas.microsoft.com/office/infopath/2003" xmlns:my="http://schemas.microsoft.com/2006/11/ResourceManagement" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><my:ObjectDataSource my:Name="object" my:TypeName="PrimaryResourceObjectDataSource"/><my:ObjectDataSource my:Name="delta" my:TypeName="PrimaryResourceDeltaDataSource"/><my:ObjectDataSource my:Name="rights" my:TypeName="PrimaryResourceRightsDataSource"/><my:ObjectDataSource my:Name="schema" my:TypeName="SchemaDataSource"/><my:XmlDataSource my:Name="summaryTransformXsl" <my:Parameters="Microsoft.IdentityManagement.WebUI.Controls.Resources.DefaultSummary.xsl"/><my:Panel my:Name="page" my:Caption="Default Configuration" my:AutoValidate="true"><my:Grouping my:Name="_caption" my:Caption="Caption" my:IsHeader="true"><my:Control my:Name="_caption" my:TypeName="UocCaptionControl" my:Caption="Create Department" my:Description="" my:ExpandArea="true"><my:Properties><my:Property my:Name="MaxHeight" my:Value="32"/><my:Property my:Name="MaxWidth" my:Value="32"/></my:Properties></my:Control></my:Grouping><my:Grouping my:Name="DepartmentInformation" my:Caption="Department Information"><my:Control my:Name="Department" my:TypeName="UocLabel" my:Caption="{Binding Source=schema, Path=Department.DisplayName}" my:Description="" my:RightsLevel="{Binding Source=rights, Path=Department}"><my:Properties><my:Property my:Name="Required" my:Value="True"/><my:Property my:Name="Text" my:Value="{Binding Source=object, Path=Department, Mode=TwoWay}"/></my:Properties></my:Control><my:Control my:Name="Divisions" my:TypeName="UocDropDownList" my:Caption="{Binding Source=schema, Path=Divisions.DisplayName}" my:Description="{Binding Source=schema, Path=Divisions.Description}"><my:Options><my:Option my:Value="" my:Caption="" my:Hint="Please Select a Division"/><my:Option my:Value="Division of Academic Affairs" my:Caption="Division of Academic Affairs"/><my:Option my:Value="Division of Administration" my:Caption="Division of Administration"/><my:Option my:Value="Division of Adult & Continuing Education" my:Caption="Division of Adult & Continuing Education"/><my:Option my:Value="Division of Information Technology" my:Caption="Division of Information Technology"/><my:Option my:Value="Division of Institutional Advancement" my:Caption="Division of Institutional Advancement"/><my:Option my:Value="Division of President's Office" my:Caption="Division of President's Office"/><my:Option my:Value="Division of Student Affairs" my:Caption="Division of Student Affairs"/></my:Options><my:Properties><my:Property my:Name="Required" my:Value="{Binding Source=schema, Path=Divisions.Required}"/><my:Property my:Name="ValuePath" my:Value="Value"/><my:Property my:Name="CaptionPath" my:Value="Caption"/><my:Property my:Name="HintPath" my:Value="Hint"/><my:Property my:Name="ItemSource" my:Value="Custom"/><my:Property my:Name="SelectedValue" my:Value="{Binding Source=object, Path=Divisions, Mode=TwoWay}"/></my:Properties></my:Control></my:Grouping><my:Grouping my:Name="summary" my:Caption="Summary" my:IsSummary="true"><my:Control my:Name="summaryControl" my:TypeName="UocHtmlSummary" my:ExpandArea="true"><my:Properties><my:Property my:Name="ModificationsXml" my:Value="{Binding Source=delta, Path=DeltaXml}"/><my:Property my:Name="TransformXsl" my:Value="{Binding Source=summaryTransformXsl, Path=/}"/><my:Property my:Name="Hint" my:Value="{Binding Source=schema, Path=%AttributeName%.Hint}"/></my:Properties></my:Control></my:Grouping></my:Panel></my:ObjectControlConfiguration>
Any advice is appreciated.