DBA Data[Home] [Help]

APPS.PER_PAR_SHD dependencies on PER_PARTICIPANTS

Line 25: If (p_constraint_name = 'PER_PARTICIPANTS_PK') Then

21: --
22: Begin
23: hr_utility.set_location('Entering:'||l_proc, 5);
24: --
25: If (p_constraint_name = 'PER_PARTICIPANTS_PK') Then
26: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
27: hr_utility.set_message_token('PROCEDURE', l_proc);
28: hr_utility.set_message_token('STEP','5');
29: hr_utility.raise_error;

Line 94: from per_participants

90: attribute18,
91: attribute19,
92: attribute20,
93: participant_usage_status
94: from per_participants
95: where participant_id = p_participant_id;
96: --
97: l_proc varchar2(72) := g_package||'api_updating';
98: l_fct_ret boolean;

Line 199: from per_participants

195: attribute18,
196: attribute19,
197: attribute20,
198: participant_usage_status
199: from per_participants
200: where participant_id = p_participant_id
201: for update nowait;
202: --
203: l_proc varchar2(72) := g_package||'lck';

Line 242: hr_utility.set_message_token('TABLE_NAME', 'per_participants');

238: -- The object is locked therefore we need to supply a meaningful
239: -- error message.
240: --
241: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
242: hr_utility.set_message_token('TABLE_NAME', 'per_participants');
243: hr_utility.raise_error;
244: End lck;
245: --
246: -- ----------------------------------------------------------------------------