DBA Data[Home] [Help]

APPS.FNDCP_TMSRV dependencies on FND_CP_TMSRV_QUEUE

Line 119: fnd_cp_tmsrv_queue.initialize(e_code, qid, pid);

115:
116: if P_TRANSPORT_TYPE = 'PIPE' then
117: fnd_cp_tmsrv_pipe.initialize(e_code, qid, pid);
118: else
119: fnd_cp_tmsrv_queue.initialize(e_code, qid, pid);
120: end if;
121:
122: end initialize;
123:

Line 179: fnd_cp_tmsrv_queue.read_message(e_code, timeout, pktyp, enddate,

175: arg_13, arg_14, arg_15, arg_16,
176: arg_17, arg_18, arg_19, arg_20);
177:
178: else
179: fnd_cp_tmsrv_queue.read_message(e_code, timeout, pktyp, enddate,
180: reqid, return_id, nlslang, nls_num_chars,
181: nls_date_lang, secgrpid, usrid, rspapid,
182: rspid, logid, apsname, program,
183: numargs, org_type, org_id,

Line 214: fnd_cp_tmsrv_queue.write_message(e_code, return_id, pktyp, reqid, outcome, message);

210:
211: if P_TRANSPORT_TYPE = 'PIPE' then
212: fnd_cp_tmsrv_pipe.write_message(e_code, return_id, pktyp, reqid, outcome, message);
213: else
214: fnd_cp_tmsrv_queue.write_message(e_code, return_id, pktyp, reqid, outcome, message);
215: end if;
216:
217: end write_message;
218: