DBA Data[Home] [Help]

APPS.OE_CREDIT_CHECK_UTIL dependencies on WF_NOTIFICATION

Line 11229: l_notification_id := wf_notification.send

11225: THEN
11226: oe_debug_pub.ADD(' Before send notification ', 2);
11227: END IF;
11228:
11229: l_notification_id := wf_notification.send
11230: ( role => l_wfn_to
11231: , msg_type => OE_GLOBALS.g_wfi_hdr
11232: , msg_name => 'ORDER_CREDIT_HOLDS'
11233: );

Line 11241: wf_notification.setattrtext

11237: oe_debug_pub.ADD(' After send notification with ID = '||
11238: l_notification_id, 2 );
11239: END IF;
11240:
11241: wf_notification.setattrtext
11242: ( nid => l_notification_id
11243: , aname => 'ORDER_HOLD_COMMENT'
11244: , avalue => l_order_hold_comment
11245: );

Line 11247: wf_notification.setattrtext

11243: , aname => 'ORDER_HOLD_COMMENT'
11244: , avalue => l_order_hold_comment
11245: );
11246:
11247: wf_notification.setattrtext
11248: ( nid => l_notification_id
11249: , aname => 'ORDER_TYPE'
11250: , avalue => l_order_type
11251: );

Line 11253: wf_notification.setattrnumber

11249: , aname => 'ORDER_TYPE'
11250: , avalue => l_order_type
11251: );
11252:
11253: wf_notification.setattrnumber
11254: ( nid => l_notification_id
11255: , aname => 'ORDER_NUMBER'
11256: , avalue => p_header_rec.order_number
11257: );

Line 11259: wf_notification.setattrnumber

11255: , aname => 'ORDER_NUMBER'
11256: , avalue => p_header_rec.order_number
11257: );
11258:
11259: wf_notification.setattrnumber
11260: ( nid => l_notification_id
11261: , aname => 'LINE_HOLD_COUNT'
11262: , avalue => l_line_hold_count
11263: );

Line 11271: Wf_Notification.Denormalize_Notification(nid => l_notification_id);

11267: --
11268: -- Ensure that the notification subject will be properly constructed.
11269: --
11270:
11271: Wf_Notification.Denormalize_Notification(nid => l_notification_id);
11272:
11273: -- End : Bug 7476530 Fix
11274:
11275: