2

MS Dynamics CRM 2011の初心者で、リボンにサンプルボタンを追加する必要があります。ここで、Customization.xmlファイルのCustomActionsの下にCustomAction Id ..を追加しましたが、CRMにインポートしているときに、エラーが表示されます。

<ImportExportXml xmlns:xsi="http://www.xxxxxxxxxxxxxxx">
.......
.....
<CustomActions >
<CustomAction Id=”Mscrm.ISV.MyCustomTabAction” Location=”Mscrm.Tabs._children” Sequence=”1000?>
       .....
....
      </CustomAction>
    </CustomActions >
<Templates>
  <RibbonTemplates Id="Mscrm.Templates"></RibbonTemplates>
</Templates>
      <CommandDefinitions>
      <CommandDefinition Id=”Mscrm.ISV.MyCustomTabCommand”&gt;
       ......
      </CommandDefinition>
      </CommandDefinitions>
<RuleDefinitions>
  <TabDisplayRules />
  <DisplayRules >
    <DisplayRule Id=”Mscrm.ISV.MyCustomTabAction”&gt;
       <OrRule>
          <Or>
            <CrmClientTypeRule Type=”Web” />   
          </Or>
        </OrRule>
       </DisplayRule>
</DisplayRules >
 .......

しかし、IEでこのxmlを開くと、「テキストコンテンツに無効な文字が見つかりました。リソースの処理中にエラーが発生しました」というエラーが表示されます。file:/// C:/ Users / Vishnukumars / Desktop / CRM / custom .. ..

<CustomAction Id="

エラーは何ですか

前もって感謝します。

4

1 に答える 1

0

疑問符で終わるカスタム アクションにエラーがあるようです。

Sequence=”1000?

する必要があります

Sequence=1000"

リボンを変更するときは、 http://crmvisualribbonedit.codeplex.com/のようなツールを使用することをお勧めします。

于 2013-03-22T07:53:38.257 に答える