DBA Data[Home] [Help]

APPS.CS_WORKFLOW_PUB dependencies on WF_NOTIFICATION

Line 811: l_notification_id := WF_Notification.Send(

807:
808: IF (l_owner_role IS NOT NULL) THEN
809:
810: -- Note that we're using Workflow engine's callback function
811: l_notification_id := WF_Notification.Send(
812: role => l_owner_role,
813: msg_type => 'SERVEREQ',
814: msg_name => 'ABORT_MESG',
815: callback => 'WF_ENGINE.CB',

Line 818: WF_Notification.SetAttrText(

814: msg_name => 'ABORT_MESG',
815: callback => 'WF_ENGINE.CB',
816: context => l_context );
817:
818: WF_Notification.SetAttrText(
819: nid => l_notification_id,
820: aname => 'ABORT_USER',
821: avalue => l_aborted_by );
822: END IF;

Line 1880: l_notification_id := WF_Notification.Send

1876: itemkey => l_itemkey,
1877: aname => 'ASSIGNEE_ROLE'
1878: );
1879: IF (l_assignee_role IS NOT NULL) THEN
1880: l_notification_id := WF_Notification.Send
1881: ( role => l_assignee_role,
1882: msg_type => l_itemtype,
1883: msg_name => 'ABORT_MSG',
1884: callback => 'WF_ENGINE.CB',

Line 1887: WF_Notification.SetAttrText

1883: msg_name => 'ABORT_MSG',
1884: callback => 'WF_ENGINE.CB',
1885: context => l_context
1886: );
1887: WF_Notification.SetAttrText
1888: ( nid => l_notification_id,
1889: aname => 'ABORT_USER',
1890: avalue => l_aborted_by
1891: );

Line 1912: l_notification_id := WF_Notification.Send

1908: -- Okay here; probably some other error occurred so the administrator
1909: -- wants to abort the process
1910: NULL;
1911: ELSE
1912: l_notification_id := WF_Notification.Send
1913: ( role => l_dispatch_role,
1914: msg_type => l_itemtype,
1915: msg_name => 'ABORT_MSG',
1916: callback => 'WF_ENGINE.CB',

Line 1919: WF_Notification.SetAttrText

1915: msg_name => 'ABORT_MSG',
1916: callback => 'WF_ENGINE.CB',
1917: context => l_context
1918: );
1919: WF_Notification.SetAttrText
1920: ( nid => l_notification_id,
1921: aname => 'ABORT_USER',
1922: avalue => l_aborted_by
1923: );