D365F&O - X++ - Best Practice Warning BP Rule: Suppress nested loop warning
Add following line of code in your class.
public class CustInvoiceJour
{
[SuppressBPWarning('nested loop used','need nested loop to insert 1:n condition')]
public void insert()
{
//your code
}
}
Comments
Post a Comment