DBA Data[Home] [Help]

PACKAGE: APPS.AMS_CLAIM_INSTALL

Source


1 PACKAGE AMS_Claim_Install AUTHID CURRENT_USER as
2 /* $Header: amsgcins.pls 115.7 2004/04/06 19:33:40 julou ship $ */
3 -- Start of Comments
4 -- Package name     : AMS_Claim_Install
5 -- Purpose          :
6 -- History          :
7 -- NOTE             :
8 -- End of Comments
9 --   *******************************************************
10 --    Start of Comments
11 --   *******************************************************
12 --   API Name:  Check_Installed
13 --   Type    :  Public
14 --   Pre-Req :
15 --   Parameters:
16 --   IN
17 --
18 --   OUT:
19 --   Version : Current version 1.0
20 --
21 --   Note: This function checks if claims module is installed
22 --
23 --   End of Comments
24 --
25 FUNCTION Check_Installed return boolean;
26 
27 /*=======================================================================*
28  | API Name  : Get_Amount_Remaining
29  | Type      : Public
30  | Pre-Req   :
31  | Parameters:
32  |    IN
33  |       p_claim_id               IN   NUMBER     Required
34  |    OUT
35  |       x_amount_remaining       OUT NOCOPY  NUMBER
36  |       x_acctd_amount_remaining OUT NOCOPY  NUMBER
37  |       x_currency_code          OUT NOCOPY  VARCHAR2
38  |       x_return_status          OUT NOCOPY  VARCHAR2
39  | Version   : Current version 1.0
40  | Note      : This API returns the amount_remaing of the root claim.
41  |
42  | History   :
43  |    28-MAY-2002  mchang  Create.
44  *=======================================================================*/
45 PROCEDURE Get_Amount_Remaining (
46   p_claim_id               IN  NUMBER,
47   x_amount_remaining       OUT NOCOPY NUMBER,
48   x_acctd_amount_remaining OUT NOCOPY NUMBER,
49   x_currency_code          OUT NOCOPY VARCHAR2,
50   x_return_status          OUT NOCOPY VARCHAR2
51 );
52 
53 End AMS_Claim_Install;