DBA Data[Home] [Help]

APPS.CS_SR_STATUS_PROPAGATION_PKG dependencies on WF_NOTIFICATION

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

537: 1) Get the current service request's owner
538: 2) Get the WF role associated to the current service request's owner
539: 3) If a WF role exists,
540: -- Set the required WF message attributes
541: -- Invoke WF_NOTIFICATION.Send() API to send an independent notificatiom
542: to the service request owner
543: */
544: IF(x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
545: OPEN l_cs_sr_get_empid_csr;

Line 566: l_notification_id := WF_Notification.Send(

562:
563:
564: If (l_owner_role IS NOT NULL) THEN
565:
566: l_notification_id := WF_Notification.Send(
567: role => l_owner_role,
568: msg_type => 'SERVEREQ',
569: msg_name => 'CS_SR_NTFY_OWNER_UPDATE_FAILED');
570:

Line 571: WF_Notification.SetAttrText(

567: role => l_owner_role,
568: msg_type => 'SERVEREQ',
569: msg_name => 'CS_SR_NTFY_OWNER_UPDATE_FAILED');
570:
571: WF_Notification.SetAttrText(
572: nid => l_notification_id,
573: aname => 'UPDATE_ERROR_DATA',
574: avalue => l_msg_data);
575:

Line 577: WF_Notification.SetAttrText(

573: aname => 'UPDATE_ERROR_DATA',
574: avalue => l_msg_data);
575:
576:
577: WF_Notification.SetAttrText(
578: nid => l_notification_id,
579: aname => 'UPDATE_REQUEST_NUMBER',
580: avalue => l_request_number);
581:

Line 583: WF_NOTIFICATION.SetAttrText(

579: aname => 'UPDATE_REQUEST_NUMBER',
580: avalue => l_request_number);
581:
582:
583: WF_NOTIFICATION.SetAttrText(
584: nid => l_notification_id,
585: aname => '#FROM_ROLE',
586: avalue => l_owner_role);
587: