DBA Data[Home] [Help]

APPS.XNP_EVENT dependencies on XNP_EVENT

Line 1: PACKAGE BODY xnp_event AS

1: PACKAGE BODY xnp_event AS
2: /* $Header: XNPEVTPB.pls 120.1 2005/06/09 02:55:11 appldev $ */
3:
4: PROCEDURE deliver(
5: p_msg_id IN NUMBER

Line 298: xnp_event.unsubscribe ( app.callback_event_id,

294: IF (l_error_code <> 0) THEN
295: RAISE e_MSG_PROCESSING_ERROR ;
296: END IF ;
297:
298: xnp_event.unsubscribe ( app.callback_event_id,
299: app.process_reference, app.close_reqd_flag ) ;
300:
301: deliver ( l_msg_header.message_id,
302: app.callback_proc_name,

Line 488: p_CALLER_NAME => 'XNP_EVENT.PROCESS' ,

484: xdp_aq_utilities.handle_dq_exception(
485: p_MESSAGE_ID => 'FF',
486: p_WF_ITEM_TYPE => null,
487: p_WF_ITEM_KEY => null,
488: p_CALLER_NAME => 'XNP_EVENT.PROCESS' ,
489: p_CALLBACK_TEXT => NULL ,
490: p_Q_NAME => l_queue_name,
491: p_ERROR_DESCRIPTION => 'Can not dequeue: ' || SQLERRM);
492:

Line 605: xnp_event.unsubscribe ( app.callback_event_id,

601: IF (l_error_code <> 0) THEN
602: RAISE e_MSG_PROCESSING_ERROR ;
603: END IF ;
604:
605: xnp_event.unsubscribe ( app.callback_event_id,
606: app.process_reference, app.close_reqd_flag ) ;
607:
608: deliver ( l_msg_header.message_id,
609: app.callback_proc_name,

Line 852: xnp_event.subscribe(

848: x_error_message := NULL ;
849:
850: FOR cur_rec IN c_Acks LOOP
851:
852: xnp_event.subscribe(
853: p_msg_code=>cur_rec.ack_msg_code
854: ,p_reference_id=>p_reference_id
855: ,p_process_reference=>p_process_reference
856: ,p_procedure_name=>'XNP_EVENT.RESUME_WORKFLOW'

Line 856: ,p_procedure_name=>'XNP_EVENT.RESUME_WORKFLOW'

852: xnp_event.subscribe(
853: p_msg_code=>cur_rec.ack_msg_code
854: ,p_reference_id=>p_reference_id
855: ,p_process_reference=>p_process_reference
856: ,p_procedure_name=>'XNP_EVENT.RESUME_WORKFLOW'
857: ,p_callback_type=>'PL/SQL'
858: ,p_close_reqd_flag => 'Y'
859: ,p_order_id=>p_order_id
860: ,p_wi_instance_id=>p_wi_instance_id

Line 1214: END xnp_event;

1210: c_timer_q := l_schema || '.' || cc_timer_q ;
1211:
1212: END ;
1213:
1214: END xnp_event;