Get Started: AI Resources for Oracle Cloud HCM – Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Why is it not possible to send channel notification using in object workflows
Hi,
Why is it not possible to send bell and email notifications using adf.util.sendNotification in Object Workflows for NextGen HR Helpdesk? Using it in an object trigger works. Not in an Object Workflow.
When using adf.util.sendNotificationSimple(adf, messageText, recipientPartyId) it does work but I need to also send emails and provide a list of people using 'RecipientPartyIdList' that is dynamically generating using WebServices (sample below). Even using adf.util.sendNotificationSimple(adf, map) does not work
def map = new HashMap()
map.put("Channels", ["ORA_SVC_BELL", "ORA_SVC_EMAIL"])
map.put("MessageText", "Testing message")
map.put("RecipientPartyIdList", [AssigneeResourceId,ReportedByPartyId])
0