DBA Data[Home] [Help]

APPS.PQP_ERT_UPD dependencies on PQP_EXCEPTION_REPORTS_TL

Line 67: -- Update the pqp_exception_reports_tl Row

63: -- Increment the object version
64: --
65: pqp_ert_shd.g_api_dml := true; -- Set the api dml status
66: --
67: -- Update the pqp_exception_reports_tl Row
68: --
69:
70: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
71: THEN

Line 73: update pqp_exception_reports_tl

69:
70: IF hr_startup_data_api_support.g_startup_mode NOT IN ('GENERIC','STARTUP')
71: THEN
72:
73: update pqp_exception_reports_tl
74: set
75: exception_report_id = p_rec.exception_report_id
76: ,exception_report_name = p_rec.exception_report_name
77: ,language = p_rec.language

Line 84: update pqp_exception_reports_tl

80: and language = p_rec.language;
81:
82: ELSE
83:
84: update pqp_exception_reports_tl
85: set
86: exception_report_id = p_rec.exception_report_id
87: ,exception_report_name = p_rec.exception_report_name
88: ,language = p_rec.language

Line 230: (p_module_name => 'PQP_EXCEPTION_REPORTS_TL'

226: --
227: when hr_api.cannot_find_prog_unit then
228: --
229: hr_api.cannot_find_prog_unit_error
230: (p_module_name => 'PQP_EXCEPTION_REPORTS_TL'
231: ,p_hook_type => 'AU');
232: --
233: end;
234: --

Line 400: from pqp_exception_reports_tl ert

396: -- source_lang match the specified language.
397: --
398: cursor csr_upd_langs is
399: select ert.language
400: from pqp_exception_reports_tl ert
401: where ert.exception_report_id = p_exception_report_id
402: and p_language_code in (ert.language
403: ,ert.source_lang);
404: --