D365F&O - X++ - Best Practice Warning BP Rule: [BPErrorUnknownLabel]: Path:
To resolve the following error:
Path: [dynamics://Table/SalesTable/Field2]:Unknown label ‘@ZILabel:NewLabel’. Legacy labels (such as the label id @SYS12345) are case insensitive and modern labels (such as ‘MyLabelId’ in @MyLabelFile:MyLabelId) are case sensitive. Use upper casing when referring to legacy labels and exact casing for modern labels.
use literalStr() before the custom label.
info(literalStr("@ZILabel:NewLabel"));
Comments
Post a Comment