DBA Data[Home] [Help]

PACKAGE: APPS.CN_NOTIFY_ORDERS

Source


1 PACKAGE CN_NOTIFY_ORDERS AUTHID CURRENT_USER AS
2 -- $Header: cnnooes.pls 120.2 2005/08/29 08:11:32 vensrini ship $
3 --
4 -- Procedure Name
5 --   regular_col_notify
6 -- Purpose
7 --   This procedure collects source data for orders
8 -- History
9 --
10 PROCEDURE regular_col_notify
11   (
12    x_start_period	 cn_periods.period_id%TYPE,
13    x_end_period	         cn_periods.period_id%TYPE,
14    x_adj_flag	         VARCHAR2,
15    parent_proc_audit_id  NUMBER,
16    debug_pipe	         VARCHAR2 DEFAULT NULL,
17    debug_level	         NUMBER	 DEFAULT NULL,
18    x_org_id 			 NUMBER ); -- R12 MOAC Changes
19 
20 --
21 -- Procedure Name
22 --   Get_Notice
23 -- Purpose
24 --   This procedure collects order updates from the Order Capture Notification
25 --   API. It is an infinite loop which
26 --   gets the latest notification off of the queue. If the order is Booked,
27 --   this procedure initiates processing the adjustments to the
28 --   order for OSC.
29 -- History
30 --
31 PROCEDURE Get_Notice(p_parent_proc_audit_id IN  NUMBER,
32 					 x_org_id IN  NUMBER ); -- R12 MOAC Changes
33 
34 ------------------------------------------------------------------------------+
35 -- Procedure Name
36 --   Get_Notice_Conc
37 -- Purpose
38 --   Concurrent Program "Order Update Notification" wrapper
39 --   on top of Get_Notice
40 ------------------------------------------------------------------------------+
41 PROCEDURE Get_Notice_Conc
42   (x_errbuf               OUT NOCOPY VARCHAR2,
43    x_retcode              OUT NOCOPY NUMBER,
44    p_org_id IN  NUMBER ); -- R12 MOAC Changes
45 
46 END cn_notify_orders;