DBA Data[Home] [Help]

APPS.PAY_OPT_INS dependencies on PAY_ORG_PAYMENT_METHODS_F_TL

Line 65: -- Insert the row into: pay_org_payment_methods_f_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: pay_org_payment_methods_f_tl
66: --
67: insert into pay_org_payment_methods_f_tl
68: (org_payment_method_id
69: ,org_payment_method_name

Line 67: insert into pay_org_payment_methods_f_tl

63: --
64: --
65: -- Insert the row into: pay_org_payment_methods_f_tl
66: --
67: insert into pay_org_payment_methods_f_tl
68: (org_payment_method_id
69: ,org_payment_method_name
70: ,language
71: ,source_lang

Line 214: (p_module_name => 'PAY_ORG_PAYMENT_METHODS_F_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_ORG_PAYMENT_METHODS_F_TL'
215: ,p_hook_type => 'AI');
216: --
217: end;
218: --

Line 320: from pay_org_payment_methods_f_tl opt

316: select l.language_code
317: from fnd_languages l
318: where l.installed_flag in ('I','B')
319: and not exists (select null
320: from pay_org_payment_methods_f_tl opt
321: where opt.org_payment_method_id = p_org_payment_method_id
322: and opt.language = l.language_code);
323: --
324: l_proc varchar2(72) := g_package || 'ins_tl';