We've had a request to display to 9 decimal places on BC Page: Currency Exchange Rates (483, List) SourceTable = Currency Exchange Rate (330) - see screenshot below:
The source table contains the following:
field(6; "Relational Exch. Rate Amount"; Decimal)
{
AccessByPermission = TableData Currency = R;
Caption = 'Relational Exch. Rate Amount';
DecimalPlaces = 1 : 6;
MinValue = 0;
trigger OnValidate()
begin
TestField("Relational Exch. Rate Amount");
end;
}
I attempted a test page extension as below:
pageextension 50100 MyCurrencyExchangeRatesExt extends "Currency Exchange Rates"
{
layout
{
modify("Relational Exch. Rate Amount")
{
DecimalPlaces = 1 : 9;
}
}
}
... and got: The property 'DecimalPlaces' cannot be customized. AL(AL0246).
Tried a table extension... same issue.
Any suggestions would be greatly appreciated?