This is the OUTPUT from the COMPOSE section after running and failing.
concat(
formatDateTime(triggerOutputs()?['body/Date_x0020_of_x0020_Document'], 'yyyyMMdd'),
'_',
coalesce(triggerOutputs()?['body/UNITName']?['VALUE'],'NA'),
'_',
replace(coalesce(triggerOutputs()?['body/Title'],'NoTitle'), '/', '-'),
'.',
last(split(triggerOutputs()?['body/{FilenameWithExtension}'], '.'))
)
THIS IS THE RAW OUTPUT:
___________________________________________________________
"concat(\n formatDateTime(triggerOutputs()?['body/Date_x0020_of_x0020_Document'], 'yyyyMMdd'),\n '_',\n coalesce(triggerOutputs()?['body/UNITName']?['VALUE'],'NA'),\n '_',\n replace(coalesce(triggerOutputs()?['body/Title'],'NoTitle'), '/', '-'),\n '.',\n last(split(triggerOutputs()?['body/{FilenameWithExtension}'], '.'))\n)"
_________________________________________
Thanks for all of your assistance!