DBA Data[Home] [Help]

APPS.PER_SLT_SHD dependencies on PER_SOLUTION_TYPES

Line 21: If (p_constraint_name = 'PER_SOLUTION_TYPES_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PER_SOLUTION_TYPES_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 53: from per_solution_types

49: solution_type_name
50: ,solution_category
51: ,updateable
52: ,object_version_number
53: from per_solution_types
54: where solution_type_name = p_solution_type_name;
55: --
56: l_fct_ret boolean;
57: --

Line 122: from per_solution_types

118: solution_type_name
119: ,solution_category
120: ,updateable
121: ,object_version_number
122: from per_solution_types
123: where solution_type_name = p_solution_type_name
124: for update nowait;
125: --
126: l_proc varchar2(72) := g_package||'lck';

Line 171: fnd_message.set_token('TABLE_NAME', 'per_solution_types');

167: -- The object is locked therefore we need to supply a meaningful
168: -- error message.
169: --
170: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
171: fnd_message.set_token('TABLE_NAME', 'per_solution_types');
172: fnd_message.raise_error;
173: End lck;
174: --
175: -- ----------------------------------------------------------------------------