DBA Data[Home] [Help]

PACKAGE: APPS.OKL_VP_AGRMNT_APPROVAL_PVT

Source


1 PACKAGE okl_vp_agrmnt_approval_pvt AUTHID CURRENT_USER AS
2 /* $Header: OKLRVAAS.pls 120.0 2005/07/28 11:43:37 sjalasut noship $ */
3   ---------------------------------------------------------------------------
4   -- GLOBAL VARIABLES
5   ---------------------------------------------------------------------------
6   G_PKG_NAME       CONSTANT VARCHAR2(200) := 'OKL_VP_AGRMNT_APPROVAL_PVT';
7   G_APP_NAME       CONSTANT VARCHAR2(3)   := OKL_API.G_APP_NAME;
8   G_API_TYPE       CONSTANT VARCHAR2(30)  := '_PVT';
9 
10   -------------------------------------------------------------------------------
11   -- PROCEDURE submit_oa_for_approval
12   -------------------------------------------------------------------------------
13   -- Start of comments
14   --
15   -- Procedure Name  : submit_oa_for_approval
16   -- Description     : procedure raises business events for operating agreement approval
17   -- Parameters      : IN p_chr_id agreement id
18   --                   OUT x_status_code the effective status of the agreement
19   -- Version         : 1.0
20   -- History         : May 18, 05 SJALASUT created
21   -- End of comments
22 
23   PROCEDURE submit_oa_for_approval(p_api_version   IN NUMBER
24                                   ,p_init_msg_list IN VARCHAR2
25                                   ,x_return_status OUT NOCOPY VARCHAR2
26                                   ,x_msg_count     OUT NOCOPY NUMBER
27                                   ,x_msg_data      OUT NOCOPY VARCHAR2
28                                   ,p_chr_id        IN okc_k_headers_b.id%TYPE
29                                   ,x_status_code   OUT NOCOPY okc_k_headers_b.scs_code%TYPE
30                                   );
31 
32   -------------------------------------------------------------------------------
33   -- PROCEDURE submit_pa_for_approval
34   -------------------------------------------------------------------------------
35   -- Start of comments
36   --
37   -- Procedure Name  : submit_pa_for_approval
38   -- Description     : procedure raises business events for program agreement approval
39   -- Parameters      : IN p_chr_id agreement id
40   --                   OUT x_status_code the effective status of the agreement
41   -- Version         : 1.0
42   -- History         : May 18, 05 SJALASUT created
43   -- End of comments
44 
45   PROCEDURE submit_pa_for_approval(p_api_version   IN NUMBER
46                                   ,p_init_msg_list IN VARCHAR2
47                                   ,x_return_status OUT NOCOPY VARCHAR2
48                                   ,x_msg_count     OUT NOCOPY NUMBER
49                                   ,x_msg_data      OUT NOCOPY VARCHAR2
50                                   ,p_chr_id        IN okc_k_headers_b.id%TYPE
51                                   ,x_status_code   OUT NOCOPY okc_k_headers_b.scs_code%TYPE
52                                   );
53 
54 END okl_vp_agrmnt_approval_pvt;