DBA Data[Home] [Help]

PACKAGE: APPS.OKC_REP_EXP_NTF_PVT

Source


1 PACKAGE OKC_REP_EXP_NTF_PVT AUTHID CURRENT_USER AS
2 /* $Header: OKCVREPEXNTFS.pls 120.0 2005/05/25 18:27:16 appldev noship $ */
3 
4 -- Start of comments
5 --API name      : submit_contract_for_approval
6 --Type          : Private.
7 --Function      : Iterates through contracts that are about to expire
8 --                and calls repository_notifier() procedure
9 --                for all of them. This procedure will send notifications
10 --                to all contract contacts.
11 --Pre-reqs      : None.
12 --Parameters    :
13 --IN            : p_api_version         IN NUMBER       Required
14 --              : p_init_msg_list       IN VARCHAR2     Optional
15 --                   Default = FND_API.G_FALSE
16 --OUT           : x_return_status       OUT  VARCHAR2(1)
17 --              : x_msg_count           OUT  NUMBER
18 --              : x_msg_data            OUT  VARCHAR2(2000)
19 --Note          :
20 -- End of comments
21 PROCEDURE contract_expiration_notifier(
22   p_api_version   IN          NUMBER,
23   p_init_msg_list IN          VARCHAR2,
24   x_msg_data      OUT NOCOPY  VARCHAR2,
25   x_msg_count     OUT NOCOPY  NUMBER,
26   x_return_status OUT NOCOPY  VARCHAR2);
27 
28 -- Start of comments
29 --API name      : contract_expiration_manager
30 --Type          : Private.
31 --Function      : Called from Concurrent Manager to send
32 --                notifications to contract contacts for
33 --                contracts that are about to expire
34 --Pre-reqs      : None.
35 --Parameters    :
36 --OUT           : errbuf  OUT NOCOPY VARCHAR2
37 --              : retcode OUT NOCOPY VARCHAR2
38 --Note          :
39 -- End of comments
40 PROCEDURE contract_expiration_manager(
41     errbuf  OUT NOCOPY VARCHAR2,
42     retcode OUT NOCOPY VARCHAR2);
43 
44 END OKC_REP_EXP_NTF_PVT;