DBA Data[Home] [Help]

APPS.PSP_PFT_INS dependencies on PSP_REPORT_PERIOD_FREQUENCY_TL

Line 65: -- Insert the row into: psp_report_period_frequency_tl

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

Line 67: insert into psp_report_period_frequency_tl

63: --
64: --
65: -- Insert the row into: psp_report_period_frequency_tl
66: --
67: insert into psp_report_period_frequency_tl
68: (period_frequency_id
69: ,language
70: ,period_frequency
71: ,source_language

Line 214: (p_module_name => 'PSP_REPORT_PERIOD_FREQUENCY_TL'

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

Line 326: from psp_report_period_frequency_tl pft

322: select l.language_code
323: from fnd_languages l
324: where l.installed_flag in ('I','B')
325: and not exists (select null
326: from psp_report_period_frequency_tl pft
327: where pft.period_frequency_id = p_period_frequency_id
328: and pft.language = l.language_code);
329: --
330: l_proc varchar2(72) := g_package || 'ins_tl';