Hi
I need help to create a condition in request to see if there is an attachment.
I tried this but then it seems Request.Attachments is never null even though I don't have any attachments. Any ideas?
import System
static def GetAttributeValue(Request):
Value = false
if Request.Attachments != null: Value = true
return Value