DBA Data[Home] [Help]

APPS.PAY_RTT_INS dependencies on PAY_RUN_TYPES_F_TL

Line 65: -- Insert the row into: pay_run_types_f_tl

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

Line 67: insert into pay_run_types_f_tl

63: --
64: --
65: -- Insert the row into: pay_run_types_f_tl
66: --
67: insert into pay_run_types_f_tl
68: (run_type_id
69: ,language
70: ,source_lang
71: ,run_type_name

Line 218: (p_module_name => 'PAY_RUN_TYPES_F_TL'

214: --
215: when hr_api.cannot_find_prog_unit then
216: --
217: hr_api.cannot_find_prog_unit_error
218: (p_module_name => 'PAY_RUN_TYPES_F_TL'
219: ,p_hook_type => 'AI');
220: --
221: end;
222: --

Line 328: from pay_run_types_f_tl rtt

324: select l.language_code
325: from fnd_languages l
326: where l.installed_flag in ('I','B')
327: and not exists (select null
328: from pay_run_types_f_tl rtt
329: where rtt.run_type_id = p_run_type_id
330: and rtt.language = l.language_code);
331: --
332: l_proc varchar2(72) := g_package || 'ins_tl';