DBA Data[Home] [Help]

APPS.CS_SR_STATUS_PROPAGATION_PKG dependencies on WF_NOTIFICATION

Line 521: -- Invoke WF_NOTIFICATION.Send() API to send an independent notificatiom

517: 1) Get the current service request's owner
518: 2) Get the WF role associated to the current service request's owner
519: 3) If a WF role exists,
520: -- Set the required WF message attributes
521: -- Invoke WF_NOTIFICATION.Send() API to send an independent notificatiom
522: to the service request owner
523: */
524: IF(x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
525: OPEN l_cs_sr_get_empid_csr;

Line 546: l_notification_id := WF_Notification.Send(

542:
543:
544: If (l_owner_role IS NOT NULL) THEN
545:
546: l_notification_id := WF_Notification.Send(
547: role => l_owner_role,
548: msg_type => 'SERVEREQ',
549: msg_name => 'CS_SR_NTFY_OWNER_UPDATE_FAILED');
550:

Line 551: WF_Notification.SetAttrText(

547: role => l_owner_role,
548: msg_type => 'SERVEREQ',
549: msg_name => 'CS_SR_NTFY_OWNER_UPDATE_FAILED');
550:
551: WF_Notification.SetAttrText(
552: nid => l_notification_id,
553: aname => 'UPDATE_ERROR_DATA',
554: avalue => l_msg_data);
555:

Line 557: WF_Notification.SetAttrText(

553: aname => 'UPDATE_ERROR_DATA',
554: avalue => l_msg_data);
555:
556:
557: WF_Notification.SetAttrText(
558: nid => l_notification_id,
559: aname => 'UPDATE_REQUEST_NUMBER',
560: avalue => l_request_number);
561:

Line 563: WF_NOTIFICATION.SetAttrText(

559: aname => 'UPDATE_REQUEST_NUMBER',
560: avalue => l_request_number);
561:
562:
563: WF_NOTIFICATION.SetAttrText(
564: nid => l_notification_id,
565: aname => '#FROM_ROLE',
566: avalue => l_owner_role);
567: