DBA Data[Home] [Help]

PACKAGE: APPS.OKL_OPEN_INTERFACE_PUB

Source


1 PACKAGE okl_open_interface_pub AUTHID CURRENT_USER AS
2 /* $Header: OKLPOPIS.pls 115.5 2002/11/30 08:37:22 spillaip noship $ */
3 
4 subtype oinv_rec_type is okl_oin_pvt.oinv_rec_type;
5 subtype iohv_rec_type is iex_ioh_pvt.iohv_rec_type;
6 
7 ---------------------------------------------------------------------------
8 -- GLOBAL VARIABLES
9 ---------------------------------------------------------------------------
10 G_PKG_NAME			CONSTANT VARCHAR2(200) := 'OKL_OPEN_INTERFACE_PUB';
11 G_APP_NAME			CONSTANT VARCHAR2(3)   := 'OKL';
12 
13 ---------------------------------------------------------------------------
14 -- GLOBAL EXCEPTION
15 ---------------------------------------------------------------------------
16   G_EXCEPTION_HALT_VALIDATION	EXCEPTION;
17 ---------------------------------------------------------------------------
18 
19 PROCEDURE insert_pending_int(
20      p_api_version              IN NUMBER,
21      p_init_msg_list            IN VARCHAR2 DEFAULT okl_api.G_FALSE,
22      p_contract_id              IN NUMBER,
23      x_oinv_rec                 OUT NOCOPY oinv_rec_type,
24      x_return_status            OUT NOCOPY VARCHAR2,
25      x_msg_count                OUT NOCOPY NUMBER,
26      x_msg_data                 OUT NOCOPY VARCHAR2);
27 
28 /*
29 PROCEDURE report_all_credit_bureau(
30      errbuf                     OUT NOCOPY VARCHAR2,
31      retcode                    OUT NOCOPY NUMBER);
32 */
33 
34 PROCEDURE process_pending_int(
35      p_api_version              IN NUMBER,
36      p_init_msg_list            IN VARCHAR2 DEFAULT okl_api.G_FALSE,
37      p_oinv_rec                 IN oinv_rec_type,
38      p_iohv_rec                 IN iohv_rec_type,
39      x_oinv_rec                 OUT NOCOPY oinv_rec_type,
40      x_return_status            OUT NOCOPY VARCHAR2,
41      x_msg_count                OUT NOCOPY NUMBER,
42      x_msg_data                 OUT NOCOPY VARCHAR2);
43 
44 
45 END okl_open_interface_pub;