DBA Data[Home] [Help]

APPS.PAY_BDT_INS dependencies on PAY_BALANCE_DIMENSIONS_TL

Line 65: -- Insert the row into: pay_balance_dimensions_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: pay_balance_dimensions_tl
66: --
67: insert into pay_balance_dimensions_tl
68: (balance_dimension_id
69: ,language

Line 67: insert into pay_balance_dimensions_tl

63: --
64: --
65: -- Insert the row into: pay_balance_dimensions_tl
66: --
67: insert into pay_balance_dimensions_tl
68: (balance_dimension_id
69: ,language
70: ,source_lang
71: ,dimension_name

Line 222: (p_module_name => 'PAY_BALANCE_DIMENSIONS_TL'

218: --
219: when hr_api.cannot_find_prog_unit then
220: --
221: hr_api.cannot_find_prog_unit_error
222: (p_module_name => 'PAY_BALANCE_DIMENSIONS_TL'
223: ,p_hook_type => 'AI');
224: --
225: end;
226: --

Line 338: from pay_balance_dimensions_tl bdt

334: select l.language_code
335: from fnd_languages l
336: where l.installed_flag in ('I','B')
337: and not exists (select null
338: from pay_balance_dimensions_tl bdt
339: where bdt.balance_dimension_id = p_balance_dimension_id
340: and bdt.language = l.language_code);
341: --
342: l_proc varchar2(72) := g_package || 'ins_tl';