DBA Data[Home] [Help]
Skip to content

PACKAGE: APPS.CN_COLUMN_TRG_MAPS_PKG

Source


1 PACKAGE cn_column_trg_maps_pkg AUTHID CURRENT_USER AS
2 -- $Header: cnrectms.pls 115.1 99/07/16 07:13:45 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_trg_maps table.
14 -- History
15 --   16-FEB-94		Devesh Khatu		Created
16 --
17 PROCEDURE insert_row (
18 	X_rowid		OUT	ROWID,
19 	X_column_trg_map_id	cn_column_trg_maps.column_trg_map_id%TYPE,
20 	X_trigger_id		cn_column_trg_maps.trigger_id%TYPE,
21 	X_column_id		cn_column_trg_maps.column_id%TYPE);
22 
23 --
24 -- Procedure Name
25 --   select_row
26 -- Purpose
27 --   Selects a record from the cn_column_trg_maps table.
28 -- History
29 --   16-FEB-94		Devesh Khatu		Created
30 --
31 PROCEDURE select_row (
32 	recinfo IN OUT cn_column_trg_maps%ROWTYPE);
33 
34 
35 END cn_column_trg_maps_pkg;