Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
How to modify Groovy script to send notification (bell) only wen the HD User send a message via WEB?
Summary:
Hello, I have this groovy script that send notification to the agent (AssigneeResourceId) when a new message is send/add to the service request via web, this happen when the user send the message but also when the agent send a message; in second case is unnecessary since notification of a new message comes to the agent who responded.
How can I modify it to send the notification only when the user (and not the agent) send a new message?
Trigger: Before Update
try {
def recipientPartyId = AssigneeResourceId
def newMessageReceived = true
def messageText = 'Hai ricevuto un messaggio da una richiesta di servizio.'
0