DBA Data[Home] [Help]

APPS.PAY_PCT_INS dependencies on PAY_USER_COLUMNS_TL

Line 65: -- Insert the row into: pay_user_columns_tl

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

Line 67: insert into pay_user_columns_tl

63: --
64: --
65: -- Insert the row into: pay_user_columns_tl
66: --
67: insert into pay_user_columns_tl
68: (user_column_id
69: ,language
70: ,source_lang
71: ,user_column_name

Line 214: (p_module_name => 'PAY_USER_COLUMNS_TL'

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

Line 324: from pay_user_columns_tl pct

320: select l.language_code
321: from fnd_languages l
322: where l.installed_flag in ('I','B')
323: and not exists (select null
324: from pay_user_columns_tl pct
325: where pct.user_column_id = p_user_column_id
326: and pct.language = l.language_code);
327: --
328: l_proc varchar2(72) := g_package || 'ins_tl';