DBA Data[Home] [Help]

APPS.PER_OBJ_SHD dependencies on PER_OBJECTIVES

Line 20: If (p_constraint_name = 'PER_OBJECTIVES_FK1') Then

16: --
17: Begin
18: hr_utility.set_location('Entering:'||l_proc, 5);
19: --
20: If (p_constraint_name = 'PER_OBJECTIVES_FK1') Then
21: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
22: hr_utility.set_message_token('PROCEDURE', l_proc);
23: hr_utility.set_message_token('STEP','5');
24: hr_utility.raise_error;

Line 25: ElsIf (p_constraint_name = 'PER_OBJECTIVES_FK2') Then

21: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
22: hr_utility.set_message_token('PROCEDURE', l_proc);
23: hr_utility.set_message_token('STEP','5');
24: hr_utility.raise_error;
25: ElsIf (p_constraint_name = 'PER_OBJECTIVES_FK2') Then
26: hr_utility.set_message(801,'HR_52054_OBJ_APR_NOT_EXIST');
27: hr_utility.set_message_token('PROCEDURE', l_proc);
28: hr_utility.set_message_token('STEP','10');
29: hr_utility.raise_error;

Line 30: ElsIf (p_constraint_name = 'PER_OBJECTIVES_PK') Then

26: hr_utility.set_message(801,'HR_52054_OBJ_APR_NOT_EXIST');
27: hr_utility.set_message_token('PROCEDURE', l_proc);
28: hr_utility.set_message_token('STEP','10');
29: hr_utility.raise_error;
30: ElsIf (p_constraint_name = 'PER_OBJECTIVES_PK') Then
31: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
32: hr_utility.set_message_token('PROCEDURE', l_proc);
33: hr_utility.set_message_token('STEP','15');
34: hr_utility.raise_error;

Line 126: from per_objectives

122: measure_type_code,
123: measure_comments ,
124: sharing_access_code
125:
126: from per_objectives
127: where objective_id = p_objective_id;
128: --
129: l_proc varchar2(72) := g_package||'api_updating';
130: l_fct_ret boolean;

Line 265: from per_objectives

261: measure_type_code,
262: measure_comments ,
263: sharing_access_code
264:
265: from per_objectives
266: where objective_id = p_objective_id
267: for update nowait;
268: --
269: l_proc varchar2(72) := g_package||'lck';

Line 310: hr_utility.set_message_token('TABLE_NAME', 'per_objectives');

306: -- The object is locked therefore we need to supply a meaningful
307: -- error message.
308: --
309: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
310: hr_utility.set_message_token('TABLE_NAME', 'per_objectives');
311: hr_utility.raise_error;
312: End lck;
313: --
314: -- ----------------------------------------------------------------------------