I have a BinaryDocument field on a form. I want the user to upload an attachment to the form and save using a button w/an action associated with it. I'm not getting any errors with my LPL but the rules don't seem to be firing and I'm at a loss.
I can't seem to get the email to trigger as part of the Action Rules or Action Exit Rules. Any guidance would be appreciated.
Persistent Fields
DocumentAttachment is a BinaryDocument
Conditions
DocumentAttachmentUploaded
when (DocumentAttachment changed)
Actions
SubmitEmail is an Instance Action
Action Rules
invoke Save
if (FormStatus = "Draft")
send email
(email LPL)
else
if (FormStatus = "Approved" and DocumentAttachmentUploaded)
send email
(email LPL)
As an exit rule the LPL was as follows:
SubmitEmail is an Instance Action
Action Rules
invoke Save
if (FormStatus = "Draft")
send email
(email LPL)
Exit Rules
if (FormStatus = "Approved" and DocumentAttachmentUploaded)
send email
(email LPL)