How To Send Bell Notification For Custom Object To Owner?
(Doc ID 2756108.1)
Last updated on AUGUST 06, 2024
Applies to:
Oracle Fusion CX Sales Cloud Service - Version 11.13.20.10.0 and laterInformation in this document applies to any platform.
Goal
How to send bell notification to owner, upon creation of custom object? The tried solution is not working
def recipientPartyId = OraZcxOwner_c
def messageText = 'A custom object notification (default message).'
def objectCode='CustomObjectAPI_c'
def map = new HashMap();
map.put("Channels", ["ORA_SVC_BELL"]);
map.put("MessageText", messageText);
map.put("RecipientPartyId", recipientPartyId);
map.put("ObjectCode", objectCode);
adf.util.sendNotification(adf,map)
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |