DBA Data[Home] [Help]

APPS.PAY_BTT_INS dependencies on PAY_BALANCE_TYPES_TL

Line 65: -- Insert the row into: pay_balance_types_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: pay_balance_types_tl
66: --
67: insert into pay_balance_types_tl
68: (balance_type_id
69: ,balance_name

Line 67: insert into pay_balance_types_tl

63: --
64: --
65: -- Insert the row into: pay_balance_types_tl
66: --
67: insert into pay_balance_types_tl
68: (balance_type_id
69: ,balance_name
70: ,reporting_name
71: ,language

Line 215: (p_module_name => 'PAY_BALANCE_TYPES_TL'

211: --
212: when hr_api.cannot_find_prog_unit then
213: --
214: hr_api.cannot_find_prog_unit_error
215: (p_module_name => 'PAY_BALANCE_TYPES_TL'
216: ,p_hook_type => 'AI');
217: --
218: end;
219: --

Line 330: from pay_balance_types_tl btt

326: select l.language_code
327: from fnd_languages l
328: where l.installed_flag in ('I','B')
329: and not exists (select null
330: from pay_balance_types_tl btt
331: where btt.balance_type_id = p_balance_type_id
332: and btt.language = l.language_code);
333: --
334: l_proc varchar2(72) := g_package || 'ins_tl';