DBA Data[Home] [Help]

APPS.PER_SLS_SHD dependencies on PER_SOLUTION_SETS

Line 56: from per_solution_sets

52: ,description
53: ,status
54: ,solution_set_impl_id
55: ,object_version_number
56: from per_solution_sets
57: where solution_set_name = p_solution_set_name
58: and user_id = p_user_id;
59: --
60: l_fct_ret boolean;

Line 132: from per_solution_sets

128: ,description
129: ,status
130: ,solution_set_impl_id
131: ,object_version_number
132: from per_solution_sets
133: where solution_set_name = p_solution_set_name
134: and user_id = p_user_id
135: for update nowait;
136: --

Line 188: fnd_message.set_token('TABLE_NAME', 'per_solution_sets');

184: -- The object is locked therefore we need to supply a meaningful
185: -- error message.
186: --
187: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
188: fnd_message.set_token('TABLE_NAME', 'per_solution_sets');
189: fnd_message.raise_error;
190: End lck;
191: --
192: -- ----------------------------------------------------------------------------