DBA Data[Home] [Help]

APPS.BEN_DETERMINE_ACTUAL_PREMIUM dependencies on BEN_ENRT_PREM

Line 44: g_computed_prem_val ben_enrt_prem.val%type ;

40: */
41: --------------------------------------------------------------------------------
42: -- COMPUTE_PREMIUM
43: --------------------------------------------------------------------------------
44: g_computed_prem_val ben_enrt_prem.val%type ;
45: --
46: -- 6330056 : Added a pl/sql table g_computed_prem_tbl to capture calculated
47: -- premium values, as there may be multiple premiums attached to
48: -- same object. After this change, the previously used global value

Line 53: ,val ben_enrt_prem.val%type);

49: -- g_computed_prem_val will become redundant.
50: --
51: type g_computed_prem_rec is record
52: (actl_prem_id ben_actl_prem_f.actl_prem_id%type
53: ,val ben_enrt_prem.val%type);
54:
55: type g_computed_prem_tab is table of g_computed_prem_rec
56: index by binary_integer;
57: