DBA Data[Home] [Help]

APPS.PER_ESA_SHD dependencies on PER_ESTABLISHMENT_ATTENDANCES

Line 107: from per_establishment_attendances

103: object_version_number,
104: business_group_id,
105: party_id, -- HR/TCA merge
106: address -- Education Establishment addresses
107: from per_establishment_attendances
108: where attendance_id = p_attendance_id;
109: --
110: l_proc varchar2(72) := g_package||'api_updating';
111: l_fct_ret boolean;

Line 209: from per_establishment_attendances

205: object_version_number,
206: business_group_id,
207: party_id, -- HR/TCA merge
208: address
209: from per_establishment_attendances
210: where attendance_id = p_attendance_id
211: for update nowait;
212: --
213: l_proc varchar2(72) := g_package||'lck';

Line 252: hr_utility.set_message_token('TABLE_NAME', 'per_establishment_attendances');

248: -- The object is locked therefore we need to supply a meaningful
249: -- error message.
250: --
251: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
252: hr_utility.set_message_token('TABLE_NAME', 'per_establishment_attendances');
253: hr_utility.raise_error;
254: End lck;
255: --
256: -- ----------------------------------------------------------------------------