mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
Ingests net-new /community knowledge from BC Code Intelligence, surviving the admission test, gray-zone salvage, and dedup against the full corpus. Domains: ui (6), error-handling (3), performance (2), upgrade (1), appsource (1), security (1), telemetry (1). The two BC24 No. Series migration drafts are merged into one article. Adds good/bad AL samples for the clean-fit articles (error-handling, performance, security, telemetry). UI and appsource remain knowledge-only. Validator and knowledge-index checks pass (207 articles). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
850 B
AL
23 lines
850 B
AL
table 50120 "FieldError Default Bad"
|
|
{
|
|
fields
|
|
{
|
|
field(1; "No."; Code[20]) { }
|
|
field(2; "Discount %"; Decimal) { }
|
|
field(3; "Currency Code"; Code[10]) { }
|
|
}
|
|
|
|
procedure ValidateForRelease()
|
|
begin
|
|
// Re-testing a field and handing FieldError a fully-formed sentence.
|
|
// The framework already prepends the caption and appends the value,
|
|
// so this renders as "Currency Code The Currency Code field must have
|
|
// a value. in ..." — caption repeated, capital letter mid-sentence,
|
|
// stray trailing clause.
|
|
if "Currency Code" = '' then
|
|
FieldError("Currency Code", 'The Currency Code field must have a value.');
|
|
|
|
if "Discount %" > 100 then
|
|
FieldError("Discount %", 'The Discount % must not be greater than 100 percent.');
|
|
end;
|
|
}
|