DBA Data[Home] [Help]

PACKAGE: APPS.XNP_TIMER

Source


1 PACKAGE XNP_TIMER AUTHID CURRENT_USER AS
2 /* $Header: XNPTIMRS.pls 120.2 2006/02/13 07:57:39 dputhiye ship $ */
3 
4 -- Checks the delay and interval of the timer.
5 -- If the delay is greater than 0 , it introduces
6 -- a dummy timer into the system
7 -- Otherwise enqueues the actual timer.
8 --
9 PROCEDURE start_timer
10 (
11 	p_msg_header IN xnp_message.msg_header_rec_type
12 	,p_msg_text IN VARCHAR2
13 	,x_error_code OUT NOCOPY NUMBER
14 	,x_error_message OUT NOCOPY VARCHAR2
15 );
16 
17 END XNP_TIMER;