DBA Data[Home] [Help]

PACKAGE BODY: APPS.FND_CP_OPS_MAINT

Source


1 package body FND_CP_OPS_MAINT as
2 /* $Header: AFCPOPMB.pls 115.7 2004/02/06 23:00:21 pferguso noship $ */
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 is
12 
13   begin
14    return true;
15   end;
16 
17 
18   --
19   -- Name
20   --   Validate
21   -- Purpose
22   --   Called to correct issues such as post proc actions being in different
23   --   Instance as the parent request.
24   -- Arguments
25   --   Req_ID		- Request to be repaired (null for all requests).
26   -- Note
27   --   Will only function on Pending and completed requests.
28   --
29   FUNCTION Validate(Req_ID in number default null) return boolean is
30 
31   begin
32    return true;
33   end;
34 
35 
36   --
37   -- Name
38   --   Migrate
39   -- Purpose
40   --   Called to migrate a request to a different instance.
41   -- Arguments
42   --   Req_ID           - Request to be moved.
43   --   OPS_ID           - Destination OPS Instance ID.
44   -- Note
45   --   Will only function on Pending and completed requests.  Calls Validate.
46   --
47   FUNCTION Migrate(Req_ID in number, OPS_ID in number) return boolean is
48 
49   begin
50     return true;
51   end;
52 
53  PROCEDURE Register_Instance (
54                 INSTANCE_NUMBER IN NUMBER,
55                 SERVICE_NAME IN VARCHAR2,
56                 DESCRIPTION in VARCHAR2) is
57 
58 begin
59   null;
60 end;
61 
62 
63 end FND_CP_OPS_MAINT;