DBA Data[Home] [Help]

APPS.GHR_EVH_SHD dependencies on GHR_EVENT_HISTORY

Line 36: If (p_constraint_name = 'GHR_EVENT_HISTORY_FK') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'GHR_EVENT_HISTORY_FK') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'GHR_EVENT_HISTORY_PK') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'GHR_EVENT_HISTORY_PK') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 78: from ghr_event_history

74: start_date,
75: end_date,
76: comments,
77: object_version_number
78: from ghr_event_history
79: where event_history_id = p_event_history_id;
80: --
81: l_proc varchar2(72) := g_package||'api_updating';
82: l_fct_ret boolean;

Line 155: from ghr_event_history

151: start_date,
152: end_date,
153: comments,
154: object_version_number
155: from ghr_event_history
156: where event_history_id = p_event_history_id
157: for update nowait;
158: --
159: l_proc varchar2(72) := g_package||'lck';

Line 198: hr_utility.set_message_token('TABLE_NAME', 'ghr_event_history');

194: -- The object is locked therefore we need to supply a meaningful
195: -- error message.
196: --
197: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
198: hr_utility.set_message_token('TABLE_NAME', 'ghr_event_history');
199: hr_utility.raise_error;
200: End lck;
201: --
202: -- ----------------------------------------------------------------------------