Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ page 20416 "Qlty. Inspection Result List"
SourceTable = "Qlty. Inspection Result";
SourceTableView = sorting("Evaluation Sequence");
PageType = List;
DelayedInsert = true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it needed? I would not change this setting.

Copy link
Author

@6CRIPT 6CRIPT Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DelayedInsert = true; is used because if don't, the error coming from the testField("Description") will be thrown as soon as you click into the description field.

But as said, if you remove testField("Description"), which would make DelayedInsert = true; also not needed, then the application allows the user to create a rec without description.

image

Therefore DelayedInsert = true; is used here to avoid this error until the user actually try to save the changes; it will trigger then if the description field is empty.

ApplicationArea = QualityManagement;
UsageCategory = Lists;
AboutTitle = 'About Inspection Results';
Expand All @@ -26,9 +27,11 @@ page 20416 "Qlty. Inspection Result List"
{
field(Code; Rec.Code)
{
ShowMandatory = true;
}
field(Description; Rec.Description)
{
ShowMandatory = true;
}
field("Evaluation Sequence"; Rec."Evaluation Sequence")
{
Expand Down
Loading