I need to clear the Vendor details , when the registration parameter fc_Predefined:InvoiceIsVendorSuspicious = true.
For that I am trying to write a script inside the event After Document State Changed . For that I need to access the vendor field of the document. But getting error as No field with name 'Vendor'. Anybody suggest a solution for this.
Sample code I am trying.....
bool isv = Document.Properties.Get("InvoiceIsVendorSuspicious") == "true";
if(isv)
{
Document.Field("VendorName").Text = "";
}
Comments
1 comment
Hello,
If you try to access the field via the event handler you should use the full name of the field that includes the Document Definition name, Section name, field’s namePlease sign in to leave a comment.