DBA Data[Home] [Help]

APPS.FND_CP_OPP_CMD dependencies on FND_CP_OPP_IPC

Line 25: fnd_cp_opp_ipc.send_command(cpid, ICM_ID, OPP_SHUTDOWN_CMD, '');

21: procedure send_opp_shutdown_request(cpid in number) is
22:
23: begin
24:
25: fnd_cp_opp_ipc.send_command(cpid, ICM_ID, OPP_SHUTDOWN_CMD, '');
26:
27:
28: end;
29:

Line 87: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_TERMINATE_CMD, reqid);

83: if complete <> 'Y' then
84:
85: -- post-processor is actively running it, send a terminate command
86:
87: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_TERMINATE_CMD, reqid);
88:
89: end if;
90:
91: end if;

Line 132: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_TERMINATE_CMD, reqid);

128: where request_id = reqid;
129: else
130: if complete <> 'Y' then
131: -- post-processor is actively running it, send a terminate command
132: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_TERMINATE_CMD, reqid);
133: end if;
134: end if;
135: exception
136: when no_data_found then

Line 155: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_PING_CMD, '');

151: msggroup varchar2(30);
152:
153: begin
154:
155: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_PING_CMD, '');
156:
157: -- should not have to wait long for the reply
158: fnd_cp_opp_ipc.get_message(senderid, flag, msgtype, msggroup, message, params, sender, timeout);
159:

Line 158: fnd_cp_opp_ipc.get_message(senderid, flag, msgtype, msggroup, message, params, sender, timeout);

154:
155: fnd_cp_opp_ipc.send_command(cpid, senderid, OPP_PING_CMD, '');
156:
157: -- should not have to wait long for the reply
158: fnd_cp_opp_ipc.get_message(senderid, flag, msgtype, msggroup, message, params, sender, timeout);
159:
160: if flag = 'Y' and message = 'PING' then
161: return true;
162: end if;