Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The name of temporary variable must be prefixed with Temp.
Description
Only temporary variable names must be prefixed with Temp.
Reason for the rule
Temporary variables must be named with identifiers that abbreviate the word temporary, such as temp. This improves readability of the code.
Bad code example
JobWIPBuffer : Record "Job WIP Buffer" temporary;
Good code example
TempJobWIPBuffer : Record "Job WIP Buffer" temporary;