通貨フィールドから値を取得し、別のエンティティの別の通貨フィールドの値として設定する方法が本当にわかりません。
次のコードが機能しません:
var entities = retrieveRecords("trainingSet?$filter=trainingId eq guid'" + GetLookUpData("trainingid").id + "'");
if (entities != null) {
if (entities.d.results.length > 0) {
if (entities.d.results[0]["Price"] != null) {
alert(entities.d.results[0]["Price"]);
Xrm.Page.getAttribute("price").setValue(entities.d.results[0]["Price"].getValue());
Xrm.Page.getAttribute("price").setSubmitMode("always");
}
}
}
エラーは、数値または null 以外のコントロールのみであると述べています。
どんな助けでも本当に感謝します! ありがとう!