formatted nav patterns

This commit is contained in:
christianbraeunlich 2022-02-05 18:19:26 +01:00
parent 38a19d75d8
commit 2fad891a77
59 changed files with 1403 additions and 1970 deletions

View file

@ -36,11 +36,13 @@ Or in case of the Post&Print, the selection codeunit is different:
Next, the user is able to select the options with an STRMENU, which results in filling in the fields above, like:
```al
Selection := STRMENU(Text000,3);
IF Selection = 0 THEN
EXIT;
Ship := Selection IN \[1,3\];
Invoice := Selection IN \[2,3\];
EXIT;
Ship := Selection IN [1,3];
Invoice := Selection IN [2,3];
```
The processing codeunit is being called after these options were set.