DBA Data[Home] [Help]

PACKAGE: APPS.HR_DM_SEED_DP

Source


1 package hr_dm_seed_dp AUTHID CURRENT_USER as
2 /* $Header: perdmsed.pkh 120.0 2005/05/31 17:14:21 appldev noship $ */
3 -- ----------------------- main --------------------------------
4 -- Description:
5 -- Main program which will seed the data pump data for a TUPS.
6 -- Steps required :
7 --     seed the TUPS upload module for the table.
8 --     for each ID column of the table call seed_id_parameter table.
9 --     if table has a column hierarchy then
10 --        seed the TUPS upload hierarchy data module as well
11 --  Input Parameters :
12 --       p_table_info   -  PL/SQL record containing info about
13 --                         current table.
14 --       p_columns_tbl  -  List of all columns of the table.
15 -- --------------------------------------------------------------
16 procedure main
17 (
18  p_table_info      in   hr_dm_gen_main.t_table_info ,
19  p_columns_tbl     in   hr_dm_library.t_varchar2_tbl
20 );
21 end hr_dm_seed_dp;