DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PD_COPY_TO_BEN_THREE

Source


1 Package BEN_PD_COPY_TO_BEN_three as
2 /* $Header: bepdccp3.pkh 120.0 2005/05/28 10:22:58 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< create_all_rt_prf_ben_rows >------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
11 -- Prerequisites:
12 --
13 --
14 -- In Parameters:
15 --   Name                           Reqd Type     Description
16 -- Post Success:
17 --
18 -- Out Parameters:
19 --   Name                                Type     Description
20 --
21 -- Post Failure:
22 --
23 -- Access Status:
24 --   Public.
25 --
26 -- {End Of Comments}
27 --
28 --
29 --
30 -- Start Log additions
31 --
32 TYPE g_not_mapped_log_rec_type Is RECORD(
33     pk_id     number(15)
34    ,text  varchar2(2000)
35    );
36 --
37 TYPE not_mapped_log_table is table of g_not_mapped_log_rec_type index by binary_integer ;
38 --
39 g_not_copied_tbl            not_mapped_log_table ;
40 g_not_copied_tbl_count      number := 0 ;
41 g_parent_display_name        varchar2(80);
42 g_child_display_name         varchar2(80);
43 g_child_table_route_id      number :=null;
44 g_parent_table_route_id     number :=null;
45 --
46 procedure create_all_rt_prf_ben_rows(
47    p_validate                       in  number     default 0 -- false
48   ,p_copy_entity_txn_id             in  number
49   ,p_effective_date                 in  date
50   ,p_prefix_suffix_text             in  varchar2  default null
51   ,p_reuse_object_flag              in  varchar2  default null
52   ,p_target_business_group_id       in  varchar2  default null
53   ,p_prefix_suffix_cd               in  varchar2  default null
54  );
55    procedure log_nomapping_data(p_parent_table_alias       in varchar2
56                      ,p_parent_pk_id                       in number
57                      ,p_copy_entity_txn_id                 in number
58                      ,p_child_table_alias                  in varchar2
59                      ,p_child_data                         in varchar2);
60 
61 -- ----------------------------------------------------------------------------
62 end BEN_PD_COPY_TO_BEN_three;