Skip to content

Commit 1caea49

Browse files
Merge pull request #3405 from RadoArvay/patch-1
Fix casing in code examples in DEV E-Document documentation
2 parents e4ad48e + ffb9f28 commit 1caea49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev-itpro/developer/devenv-extend-edocuments.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ Here's an example of how you could implement each of the methods within the inte
6767
SalesHeader: Record "Sales Header";
6868
begin
6969
70-
Case SourceDocumentHeader.Number of
70+
case SourceDocumentHeader.Number of
7171
Database::"Sales Header":
7272
begin
7373
SourceDocumentHeader.Field(SalesHeader.FieldNo("Customer Posting Group")).TestField();
7474
SourceDocumentHeader.Field(SalesHeader.FieldNo("Posting Date")).TestField();
7575
end;
76-
End;
76+
end;
7777
```
7878
7979
You also have the option to perform distinct checks depending on document processing phase.
@@ -84,7 +84,7 @@ You also have the option to perform distinct checks depending on document proces
8484
SalesHeader: Record "Sales Header";
8585
begin
8686
87-
Case SourceDocumentHeader.Number of
87+
case SourceDocumentHeader.Number of
8888
Database::"Sales Header":
8989
case EDocumentProcessingPhase of
9090
EDocumentProcessingPhase::Release:
@@ -99,7 +99,7 @@ You also have the option to perform distinct checks depending on document proces
9999
SourceDocumentHeader.Field(SalesHeader.FieldNo("Bill-to Name")).TestField();
100100
end;
101101
end;
102-
End;
102+
end;
103103
end;
104104
```
105105

0 commit comments

Comments
 (0)