DBA Data[Home] [Help]

APPS.FND_CP_TMSRV_QUEUE dependencies on AQ$_AGENT

Line 35: P_SENDER_AGENT sys.aq$_agent;

31: P_DEBUG varchar2(1) := FNDCP_TMSRV.DBG_OFF;
32: Q_Name varchar2(64) := null;
33: RetQ_Name varchar2(64) := null;
34: P_SENDER_ID varchar2(30) := null;
35: P_SENDER_AGENT sys.aq$_agent;
36: P_ENQ_OPTS DBMS_AQ.enqueue_options_t;
37: P_DEQ_OPTS DBMS_AQ.dequeue_options_t;
38: P_CORRELATION_ID varchar2(32);
39:

Line 59: P_SENDER_AGENT := sys.aq$_agent(P_SENDER_ID, NULL, NULL);

55: begin
56:
57:
58: P_SENDER_ID := TMPREFIX || pid;
59: P_SENDER_AGENT := sys.aq$_agent(P_SENDER_ID, NULL, NULL);
60:
61: P_ENQ_OPTS.visibility := DBMS_AQ.IMMEDIATE;
62: P_ENQ_OPTS.sequence_deviation := NULL;
63:

Line 341: msg_props.recipient_list(0) := sys.aq$_agent(TMPREFIX || reqid, NULL, NULL);

337: msg_props.delay := DBMS_AQ.NO_DELAY;
338:
339: msg_props.sender_id := P_SENDER_AGENT;
340:
341: msg_props.recipient_list(0) := sys.aq$_agent(TMPREFIX || reqid, NULL, NULL);
342:
343: -- don't let the message stay on the queue forever, but don't make the queue monitor
344: -- work too hard...
345: msg_props.expiration := 600;