function getEuroExchangeRate(executionContext) { var formContext = executionContext.getFormContext(); //Retrieve record Xrm.WebApi.retrieveRecord("transactioncurrency", "e97e1a46-4e59-e811-8148-000d3a06499e", "?$select=exchangerate").then( function success(result) { console.log(result); // Columns var transactioncurrencyid = result["transactioncurrencyid"]; // Guid var exchangerate = result["exchangerate"]; // Decimal var exchangerate_formatted = result["exchangerate@OData.Community.Display.V1.FormattedValue"]; //update field formContext.getAttribute("abc_euroexchangerate").setValue(exchangerate);//abc_euroexchangerate should be logic name of the field }, function (error) { console.log(error.message); } ); }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
We are honored to recognize Mansi Soni as our August 2025 Community…
A new season of Super Users has arrived, and we are so grateful for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Sohail Ahmed 3 Super User 2025 Season 2