DBA Data[Home] [Help]

APPS.BEN_PUM_SHD dependencies on BEN_POP_UP_MESSAGES

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_POP_UP_MESSAGES_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;

Line 79: from ben_pop_up_messages

75: object_version_number,
76: start_date,
77: end_date,
78: no_formula_flag
79: from ben_pop_up_messages
80: where pop_up_messages_id = p_pop_up_messages_id;
81: --
82: l_proc varchar2(72) := g_package||'api_updating';
83: l_fct_ret boolean;

Line 162: from ben_pop_up_messages

158: object_version_number,
159: start_date,
160: end_date,
161: no_formula_flag
162: from ben_pop_up_messages
163: where pop_up_messages_id = p_pop_up_messages_id
164: for update nowait;
165: --
166: l_proc varchar2(72) := g_package||'lck';

Line 205: hr_utility.set_message_token('TABLE_NAME', 'ben_pop_up_messages');

201: -- The object is locked therefore we need to supply a meaningful
202: -- error message.
203: --
204: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
205: hr_utility.set_message_token('TABLE_NAME', 'ben_pop_up_messages');
206: hr_utility.raise_error;
207: End lck;
208: --
209: -- ----------------------------------------------------------------------------