DBA Data[Home] [Help]

PACKAGE: APPS.CN_COLUMN_IND_MAPS_PKG

Source


1 PACKAGE cn_column_ind_maps_pkg AUTHID CURRENT_USER AS
2 -- $Header: cnrecims.pls 115.1 99/07/16 07:13:33 porting ship $
3 
4 
5 --
6 -- Public Procedures
7 --
8 
9 --
10 -- Procedure Name
11 --   insert_row
12 -- Purpose
13 --   Insert a new record in the cn_column_ind_maps table.
14 -- History
15 --   2/11/94		Devesh Khatu		Created
16 --
17 PROCEDURE insert_row (
18 	X_rowid		OUT	ROWID,
19 	X_column_ind_map_id	cn_column_ind_maps.column_ind_map_id%TYPE,
20 	X_index_id		cn_column_ind_maps.index_id%TYPE,
21 	X_column_id		cn_column_ind_maps.column_id%TYPE,
22 	X_column_position	cn_column_ind_maps.column_position%TYPE,
23 	X_order_flag		cn_column_ind_maps.order_flag%TYPE);
24 
25 --
26 -- Procedure Name
27 --   select_row
28 -- Purpose
29 --   Selects a record from the cn_column_ind_maps table.
30 -- History
31 --   2/11/94		Devesh Khatu		Created
32 --
33 PROCEDURE select_row (
34 	recinfo IN OUT cn_column_ind_maps%ROWTYPE);
35 
36 
37 END cn_column_ind_maps_pkg;