DBA Data[Home] [Help]

PACKAGE: APPS.FND_CP_OPS_MAINT

Source


1 package FND_CP_OPS_MAINT AUTHID CURRENT_USER as
2 /* $Header: AFCPOPMS.pls 115.4 2002/02/08 19:51:36 nbhambha ship $ */
3 
4 
5   --
6   -- Name
7   --   Expand
8   -- Purpose
9   --   Called to extend the partitions as new ops instances are added.
10   --
11   FUNCTION Expand return boolean;
12 
13   --
14   -- Name
15   --   Validate
16   -- Purpose
17   --   Called to correct issues such as post proc actions being in different
18   --   Instance as the parent request.
19   -- Arguments
20   --   Req_ID		- Request to be repaired (null for all requests).
21   -- Note
22   --   Will only function on Pending and completed requests.
23   --
24   FUNCTION Validate(Req_ID in number default null) return boolean;
25 
26   --
27   -- Name
28   --   Migrate
29   -- Purpose
30   --   Called to migrate a request to a different instance.
31   -- Arguments
32   --   Req_ID           - Request to be moved.
33   --   OPS_ID           - Destination OPS Instance ID.
34   -- Note
35   --   Will only function on Pending and completed requests.  Calls Validate.
36   --
37   FUNCTION Migrate(Req_ID in number, OPS_ID in number) return boolean;
38 
39   PROCEDURE Register_Instance (
40  		INSTANCE_NUMBER IN NUMBER,
41  		SERVICE_NAME IN VARCHAR2,
42                 DESCRIPTION in VARCHAR2);
43 
44 end FND_CP_OPS_MAINT;