You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register
Get Started with Redwood for Oracle Cloud HCM   Begin Now

Redwood - HR HelpDesk - Send Notification for 'New to InProgess' v/s 'Waiting to Inprogress'

edited Jul 5, 2024 3:38PM in Help Desk 2 comments

Summary:

Hello,

I have created below trigger to send notification whenever Status is changed to InProgress. This is correctly sending notification whenever there's is change in Status.

try
{
def recipientPartyId = AssigneeResourceId
def messageText = "SR is in progress"
if (isAttributeChanged("StatusCd") && StatusCd == 'ORA_SVC_HRHD_INPROGRESS')
{
def map = new HashMap()
map.put("Channels",["ORA_SVC_BELL", "ORA_SVC_EMAIL"])
map.put("MessageText", messageText)
map.put("RecipientPartyId", recipientPartyId);
adf.util.sendNotification(adf, map)
}
}
catch (e)
{
throw new oracle.jbo.ValidationException('Failure: ' + e.getMessage())
}

However, I want to restrict the notification for the below 2 scenarios based on 'user who performs the action' or 'current status' :

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!