DBA Data[Home] [Help]

APPS.OKL_CURE_REQ_AMT_PVT dependencies on OKL_CURE_AMOUNTS

Line 4: subtype camv_rec_type is OKL_cure_amounts_pub.camv_rec_type;

1: PACKAGE OKL_CURE_REQ_AMT_PVT AUTHID CURRENT_USER AS
2: /* $Header: OKLRCRKS.pls 115.0 2003/04/25 04:15:16 smereddy noship $ */
3:
4: subtype camv_rec_type is OKL_cure_amounts_pub.camv_rec_type;
5: subtype camv_tbl_type is OKL_cure_amounts_pub.camv_tbl_type;
6:
7: TYPE cure_req_rec_type is record (
8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,

Line 5: subtype camv_tbl_type is OKL_cure_amounts_pub.camv_tbl_type;

1: PACKAGE OKL_CURE_REQ_AMT_PVT AUTHID CURRENT_USER AS
2: /* $Header: OKLRCRKS.pls 115.0 2003/04/25 04:15:16 smereddy noship $ */
3:
4: subtype camv_rec_type is OKL_cure_amounts_pub.camv_rec_type;
5: subtype camv_tbl_type is OKL_cure_amounts_pub.camv_tbl_type;
6:
7: TYPE cure_req_rec_type is record (
8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,
9: CURE_REPORT_ID OKL_CURE_AMOUNTS.CRT_ID%type,

Line 8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,

4: subtype camv_rec_type is OKL_cure_amounts_pub.camv_rec_type;
5: subtype camv_tbl_type is OKL_cure_amounts_pub.camv_tbl_type;
6:
7: TYPE cure_req_rec_type is record (
8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,
9: CURE_REPORT_ID OKL_CURE_AMOUNTS.CRT_ID%type,
10: CHR_ID OKL_CURE_AMOUNTS.CHR_ID%type,
11: VENDOR_ID OKL_CURE_REPORTS.VENDOR_ID%type );
12:

Line 9: CURE_REPORT_ID OKL_CURE_AMOUNTS.CRT_ID%type,

5: subtype camv_tbl_type is OKL_cure_amounts_pub.camv_tbl_type;
6:
7: TYPE cure_req_rec_type is record (
8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,
9: CURE_REPORT_ID OKL_CURE_AMOUNTS.CRT_ID%type,
10: CHR_ID OKL_CURE_AMOUNTS.CHR_ID%type,
11: VENDOR_ID OKL_CURE_REPORTS.VENDOR_ID%type );
12:
13: TYPE cure_req_tbl_type is table of cure_req_rec_type INDEX BY BINARY_INTEGER;

Line 10: CHR_ID OKL_CURE_AMOUNTS.CHR_ID%type,

6:
7: TYPE cure_req_rec_type is record (
8: CURE_AMOUNT_ID OKL_CURE_AMOUNTS.cure_amount_id%type,
9: CURE_REPORT_ID OKL_CURE_AMOUNTS.CRT_ID%type,
10: CHR_ID OKL_CURE_AMOUNTS.CHR_ID%type,
11: VENDOR_ID OKL_CURE_REPORTS.VENDOR_ID%type );
12:
13: TYPE cure_req_tbl_type is table of cure_req_rec_type INDEX BY BINARY_INTEGER;
14: