Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -46,6 +46,7 @@ page 31138 "VIES Declaration CZL"
{
ApplicationArea = Basic, Suite;
Importance = Promoted;
OptionCaption = 'Normal,Corrective';
ToolTip = 'Specifies type of VIES Declaration (Normal, Corrective).';

trigger OnValidate()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ page 31140 "VIES Declarations CZL"
field("Declaration Type"; Rec."Declaration Type")
{
ApplicationArea = Basic, Suite;
OptionCaption = 'Normal,Corrective';
Comment thread
DavidHolusa marked this conversation as resolved.
Outdated
ToolTip = 'Specifies type of VIES Declaration (Normal, Corrective).';
}
field("Corrected Declaration No."; Rec."Corrected Declaration No.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ table 31075 "VIES Declaration Header CZL"
field(20; "Declaration Type"; Option)
{
Caption = 'Declaration Type';
OptionCaption = 'Normal,Corrective,Corrective-Supplementary (Obsolete)';
OptionCaption = 'Normal,Corrective,Corrective-Supplementary';
OptionMembers = Normal,Corrective,"Corrective-Supplementary";
DataClassification = CustomerContent;

Expand All @@ -263,8 +263,7 @@ table 31075 "VIES Declaration Header CZL"
Error(LineExistErr, FieldCaption("Declaration Type"));
if "Declaration Type" = "Declaration Type"::Normal then
"Corrected Declaration No." := '';
if "Declaration Type" = "Declaration Type"::"Corrective-Supplementary" then
Error(NoLongerSupportedErr);
CheckDeclarationType();
end;
end;
}
Expand Down
Loading