Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
The name of non-temporary variables must not 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. Therefore you should avoid using temp for other purposes.
Bad code example
TempJobWIPBuffer : Record "Job WIP Buffer";
Good code example
CopyOfJobWIPBuffer : Record "Job WIP Buffer";