2016-12-28 7 views
-1

をしようとしたとき、プラグイン前オペコード内のコードは次のようになります。「ビジネス・プロセス・エラー」エンティティを作成する

var cloneEntity = new Entity(SPLIT_SAVINGS); 
object endDate; 
_parentEntity.Attributes.TryGetValue(END_DATE, out endDate); 

cloneEntity.Attributes[START_DATE] = _parentEntity.Attributes[START_DATE]; 
cloneEntity.Attributes[END_DATE] = endDate; 
cloneEntity.Attributes[RATIO] = _parentEntity.Attributes[RATIO]; 
Guid cloneId = service.Create(cloneEntity); 

それでは、私がやろうとしていることは術前の間に、ありますこのエンティティを作成することから、別の関連エンティティに関連付けられるように(同じ日付と比率の属性も)複製されます。私はエラーログをどのように作成するのか分かりません。私が進めることができる唯一のことは、私が何かを見つけることができないエラーコードです。

これは、Create()コールがpre-opを再帰的に実行しているという事実と関係していますか?私はすでに無限ループを防ぐ条件付きロジックを持っています。

ここには参照用のエラーログがあります。ありがとう。

Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: There was an error in the Plugin CRMPluginSolution.Plugins.SplitSavingsRatioProcess, and a log has been created. Please try this again later. If this issue persists contact your IT Staff. Detail: 
<OrganizationServiceFault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/xrm/2011/Contracts"> 
    <ErrorCode>-2147220891</ErrorCode> 
    <ErrorDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic"> 
    <KeyValuePairOfstringanyType> 
     <d2p1:key>OperationStatus</d2p1:key> 
     <d2p1:value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string">0</d2p1:value> 
    </KeyValuePairOfstringanyType> 
    <KeyValuePairOfstringanyType> 
     <d2p1:key>SubErrorCode</d2p1:key> 
     <d2p1:value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string">-2146233088</d2p1:value> 
    </KeyValuePairOfstringanyType> 
    </ErrorDetails> 
    <Message>There was an error in the Plugin CRMPluginSolution.Plugins.SplitSavingsRatioProcess, and a log has been created. Please try this again later. If this issue persists contact your IT Staff. </Message> 
    <Timestamp>2016-12-28T23:42:10.5503562Z</Timestamp> 
    <InnerFault i:nil="true" /> 
    <TraceText> 

[CRMPluginSolution.Plugins: CRMPluginSolution.Plugins.SplitSavingsRatioProcess] 
[77dfca7a-35cd-e611-80df-00059a3c7a00: SplitSavingsRatioProcess] 


</TraceText> 
</OrganizationServiceFault> 

答えて

0

問題が見つかりました。私のプラグイン登録ツールのプロファイラは、Createコールで例外をスローするように設定されていました。永続性を使用するようにプロファイラを設定すると、エンティティが作成されていました。

関連する問題