D365F&O - X++ - Best Practice Warning [BPUnusedStrFmtArgument]:The placeholder ‘%1’ to strFmt is not used in the format string.
To remove the BP warning add literalStr() for label string validation in your code where you have used %1 in your label string.
error( strfmt( literalStr("@MyLabel:LabelCust"), CustTable.InvoiceId) );
Comments
Post a Comment