DBA Data[Home] [Help]

APPS.PQP_ERT_INS dependencies on PQP_EXCEPTION_REPORTS_TL

Line 64: -- Insert the row into: pqp_exception_reports_tl

60: hr_utility.set_location('Entering:'||l_proc, 5);
61: --
62: pqp_ert_shd.g_api_dml := true; -- Set the api dml status
63: --
64: -- Insert the row into: pqp_exception_reports_tl
65: --
66:
67: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
68: THEN

Line 70: insert into pqp_exception_reports_tl

66:
67: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
68: THEN
69:
70: insert into pqp_exception_reports_tl
71: (exception_report_id
72: ,exception_report_name
73: ,language
74: ,source_lang

Line 85: insert into pqp_exception_reports_tl

81: );
82:
83: ELSE
84:
85: insert into pqp_exception_reports_tl
86: (exception_report_id
87: ,exception_report_name
88: ,language
89: ,source_lang

Line 242: (p_module_name => 'PQP_EXCEPTION_REPORTS_TL'

238: --
239: when hr_api.cannot_find_prog_unit then
240: --
241: hr_api.cannot_find_prog_unit_error
242: (p_module_name => 'PQP_EXCEPTION_REPORTS_TL'
243: ,p_hook_type => 'AI');
244: --
245: end;
246: --

Line 347: from pqp_exception_reports_tl ert

343: select l.language_code
344: from fnd_languages l
345: where l.installed_flag in ('I','B')
346: and not exists (select null
347: from pqp_exception_reports_tl ert
348: where ert.exception_report_id = p_exception_report_id
349: and ert.language = l.language_code);
350: --
351: l_proc varchar2(72) := g_package || 'ins_tl';