formatted nav patterns 2 to 4
This commit is contained in:
parent
2fad891a77
commit
f1f4aab1d7
55 changed files with 788 additions and 506 deletions
|
|
@ -6,15 +6,19 @@ Declare Text Constant as global variables.
|
|||
|
||||
Bad code
|
||||
|
||||
PROCEDURE GetRequirementText@6(...) : Text\[50\];
|
||||
VAR
|
||||
```al
|
||||
PROCEDURE GetRequirementText@6(...) : Text\[50\];
|
||||
VAR
|
||||
RequirementOptionsTxt@1002 : TextConst 'ENU=Shipment,Receive,Pick,Put-Away';
|
||||
BEGIN
|
||||
BEGIN
|
||||
```
|
||||
|
||||
Good code
|
||||
|
||||
VAR
|
||||
```al
|
||||
VAR
|
||||
RequirementOptionsTxt@1002 : TextConst 'ENU=Shipment,Receive,Pick,Put-Away';
|
||||
...
|
||||
PROCEDURE GetRequirementText@6(...) : Text\[50\];
|
||||
BEGIN
|
||||
...
|
||||
PROCEDURE GetRequirementText@6(...) : Text\[50\];
|
||||
BEGIN
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue