Is it correct to filter on ARInvoice using a statement like :
Where<ARInvoice.status.IsEqual<"Closed">>
?
Answer
Is is a correct statement?
Best answer by Vignesh Ponnusamy
Hi
You cannot use string like that, instead reuse the constant defined in the existing ARDocStatus class. Example below,
Where<ARInvoice.status.IsEqual<ARDocStatus.closed>Good Luck,
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.