DBA Data[Home] [Help]

APPS.XNP_TIMER_MGR dependencies on XNP_TIMER

Line 1: PACKAGE BODY xnp_timer_mgr AS

1: PACKAGE BODY xnp_timer_mgr AS
2: /* $Header: XNPTMGRB.pls 120.1 2005/06/17 03:49:28 appldev $ */
3:
4: G_NEW_LINE char := fnd_global.local_chr(10) ;
5:

Line 99: xnp_timer_core.update_timer_status(

95: THEN
96:
97: /* update dummy timer status to EXPIRED */
98:
99: xnp_timer_core.update_timer_status(
100: p_timer_id => l_msg_header.message_id,
101: p_status => 'EXPIRED',
102: x_error_code => l_error_code,
103: x_error_message => l_error_message);

Line 113: l_next_timer := xnp_timer_core.get_next_timer

109: /*
110: ** Get the actual message from the timer registry
111: ** Next_Timer column for the timer_id
112: */
113: l_next_timer := xnp_timer_core.get_next_timer
114: (l_msg_header.message_id);
115:
116: IF (l_next_timer IS NULL)
117: THEN

Line 138: xnp_timer_core.update_timer_status(

134:
135: ELSE
136: /* update dummy timer status to EXPIRED */
137:
138: xnp_timer_core.update_timer_status(
139: p_timer_id => l_msg_header.message_id,
140: p_status => 'EXPIRED',
141: x_error_code => l_error_code,
142: x_error_message => l_error_message);

Line 307: xnp_timer_core.update_timer_status(

303: THEN
304:
305: /* update dummy timer status to EXPIRED */
306:
307: xnp_timer_core.update_timer_status(
308: p_timer_id => l_msg_header.message_id,
309: p_status => 'EXPIRED',
310: x_error_code => l_error_code,
311: x_error_message => l_error_message);

Line 321: l_next_timer := xnp_timer_core.get_next_timer

317: /*
318: ** Get the actual message from the timer registry
319: ** Next_Timer column for the timer_id
320: */
321: l_next_timer := xnp_timer_core.get_next_timer
322: (l_msg_header.message_id);
323:
324: IF (l_next_timer IS NULL)
325: THEN

Line 346: xnp_timer_core.update_timer_status(

342:
343: ELSE
344: /* update dummy timer status to EXPIRED */
345:
346: xnp_timer_core.update_timer_status(
347: p_timer_id => l_msg_header.message_id,
348: p_status => 'EXPIRED',
349: x_error_code => l_error_code,
350: x_error_message => l_error_message);

Line 507: xnp_timer.start_timer(v_msg_header,

503: IF ( x_error_code = 0) THEN
504:
505: /* start the timer */
506:
507: xnp_timer.start_timer(v_msg_header,
508: l_msg_text,
509: x_error_code,
510: x_error_message) ;
511:

Line 811: END XNP_TIMER_MGR;

807: process (xnp_event.c_timer_q, p_correlation_id, x_queue_timed_out) ;
808:
809: END process_in_tmr ;
810:
811: END XNP_TIMER_MGR;