DBA Data[Home] [Help]

APPS.PER_EST_SHD dependencies on PER_ESTABLISHMENTS

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_ESTABLISHMENTS_PK') Then
37: hr_utility.set_message(800,'HR_51492_ESA_ESTAB_ID_PK ');
38: hr_utility.raise_error;
39: Elsif (p_constraint_name = 'PER_ESTABLISHMENTS_UK') Then
40: hr_utility.set_message(801, 'HR_51485_EST_NAME_LOCAT_UNIQUE');

Line 39: Elsif (p_constraint_name = 'PER_ESTABLISHMENTS_UK') Then

35: --
36: If (p_constraint_name = 'PER_ESTABLISHMENTS_PK') Then
37: hr_utility.set_message(800,'HR_51492_ESA_ESTAB_ID_PK ');
38: hr_utility.raise_error;
39: Elsif (p_constraint_name = 'PER_ESTABLISHMENTS_UK') Then
40: hr_utility.set_message(801, 'HR_51485_EST_NAME_LOCAT_UNIQUE');
41: hr_utility.raise_error;
42: Else
43: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');

Line 112: from per_establishments

108: est_information18,
109: est_information19,
110: est_information20 ,
111: object_version_number
112: from per_establishments
113: where establishment_id = p_establishment_id;
114: --
115: l_proc varchar2(72) := g_package||'api_updating';
116: l_fct_ret boolean;

Line 227: from per_establishments

223: est_information18,
224: est_information19,
225: est_information20,
226: object_version_number
227: from per_establishments
228: where establishment_id = p_establishment_id
229: for update nowait;
230: --
231: l_proc varchar2(72) := g_package||'lck';

Line 270: hr_utility.set_message_token('TABLE_NAME', 'per_establishments');

266: -- The object is locked therefore we need to supply a meaningful
267: -- error message.
268: --
269: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
270: hr_utility.set_message_token('TABLE_NAME', 'per_establishments');
271: hr_utility.raise_error;
272: End lck;
273: --
274: -- ----------------------------------------------------------------------------