File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,13 @@ Here's an example of how you could implement each of the methods within the inte
67
67
SalesHeader: Record "Sales Header";
68
68
begin
69
69
70
- Case SourceDocumentHeader.Number of
70
+ case SourceDocumentHeader.Number of
71
71
Database::"Sales Header":
72
72
begin
73
73
SourceDocumentHeader.Field(SalesHeader.FieldNo("Customer Posting Group")).TestField();
74
74
SourceDocumentHeader.Field(SalesHeader.FieldNo("Posting Date")).TestField();
75
75
end;
76
- End ;
76
+ end ;
77
77
```
78
78
79
79
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
84
84
SalesHeader: Record "Sales Header";
85
85
begin
86
86
87
- Case SourceDocumentHeader.Number of
87
+ case SourceDocumentHeader.Number of
88
88
Database::"Sales Header":
89
89
case EDocumentProcessingPhase of
90
90
EDocumentProcessingPhase::Release:
@@ -99,7 +99,7 @@ You also have the option to perform distinct checks depending on document proces
99
99
SourceDocumentHeader.Field(SalesHeader.FieldNo("Bill-to Name")).TestField();
100
100
end;
101
101
end;
102
- End ;
102
+ end ;
103
103
end;
104
104
```
105
105
You can’t perform that action at this time.
0 commit comments