replaced <\> to <>

This commit is contained in:
christianbraeunlich 2022-02-05 19:50:32 +01:00
parent f1f4aab1d7
commit 2fc21159de
4 changed files with 9 additions and 10 deletions

View file

@ -19,7 +19,7 @@ Define two functions in the setup or supplementary table: One for verifying if t
Call the code. For example:
```
Local IsXAvailable : Boolean
If field X <\> '' then
If field X <> '' then
Exit(True)
Exit(false)
@ -56,10 +56,9 @@ The code in the **Sales & Receivables Setup** table can now be called directly f
Were the code is called:
```AL
IF ("EAN No." <\> '') THEN
SalesSetup.VerifyAndSetOIOUBLPathSetup(SalesHeader."Document Type");
```al
IF ("EAN No." <> '') THEN
SalesSetup.VerifyAndSetOIOUBLPathSetup(SalesHeader."Document Type");
```
If the setup is not updated properly, the user is prompted to update it as follows.