DBA Data[Home] [Help]

PACKAGE: APPS.FND_CP_OPP_CMD

Source


1 PACKAGE  fnd_cp_opp_cmd AS
2 /* $Header: AFCPOPCS.pls 120.1 2005/07/02 02:55:35 appldev noship $ */
3 
4 --
5 -- Send an immediate shutdown request to a specific OPP process
6 --
7 procedure send_opp_shutdown_request(cpid in number);
8 
9 
10 --
11 -- Requests termination of postprocessing for a specific request
12 --
13 procedure terminate_opp_request(reqid in number, senderid in number);
14 
15 
16 --
17 -- Ping a specific OPP service process
18 -- Returns TRUE if process replies.
19 --
20 function ping_opp_service(cpid in number, senderid in number, timeout in number) return boolean;
21 
22 
23 END fnd_cp_opp_cmd;