DBA Data[Home] [Help]

APPS.PAY_PTT_INS dependencies on PAY_USER_TABLES_TL

Line 65: -- Insert the row into: pay_user_tables_tl

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

Line 67: insert into pay_user_tables_tl

63: --
64: --
65: -- Insert the row into: pay_user_tables_tl
66: --
67: insert into pay_user_tables_tl
68: (user_table_id
69: ,language
70: ,source_lang
71: ,user_table_name

Line 218: (p_module_name => 'PAY_USER_TABLES_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_USER_TABLES_TL'
219: ,p_hook_type => 'AI');
220: --
221: end;
222: --

Line 331: from pay_user_tables_tl ptt

327: select l.language_code
328: from fnd_languages l
329: where l.installed_flag in ('I','B')
330: and not exists (select null
331: from pay_user_tables_tl ptt
332: where ptt.user_table_id = p_user_table_id
333: and ptt.language = l.language_code);
334: --
335: l_proc varchar2(72) := g_package || 'ins_tl';