Skip to content

Commit

Permalink
Also uppercase is allowed in workspace and lakehouse (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertverbeek4PS authored May 23, 2024
2 parents c537830 + 73c31b1 commit 8547b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions businessCentral/app/src/Setup.Table.al
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ table 82560 "ADLSE Setup"
begin
if not Evaluate(ValidGuid, Rec.Workspace) then
if (StrLen(Rec.Workspace) < 3) or (StrLen(Rec.Workspace) > 24)
or TextCharactersOtherThan(Rec.Workspace, 'abcdefghijklmnopqrstuvwxyz1234567890_')
or TextCharactersOtherThan(Rec.Workspace, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_')
then
Error(WorkspaceIncorrectFormatErr);
end;
Expand All @@ -127,7 +127,7 @@ table 82560 "ADLSE Setup"
begin
if not Evaluate(ValidGuid, Rec.Lakehouse) then
if (StrLen(Rec.Lakehouse) < 3) or (StrLen(Rec.Lakehouse) > 24)
or TextCharactersOtherThan(Rec.Lakehouse, 'abcdefghijklmnopqrstuvwxyz1234567890_')
or TextCharactersOtherThan(Rec.Lakehouse, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_')
then
Error(LakehouseIncorrectFormatErr);
end;
Expand Down

0 comments on commit 8547b4c

Please sign in to comment.