DBA Data[Home] [Help]

APPS.HR_QSA_UPD dependencies on HR_QSA_SHD

Line 54: Procedure update_dml(p_rec in out nocopy hr_qsa_shd.g_rec_type) is

50: -- Internal Row Handler Use Only.
51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml(p_rec in out nocopy hr_qsa_shd.g_rec_type) is
55: --
56: l_proc varchar2(72) := g_package||'update_dml';
57: --
58: Begin

Line 80: hr_qsa_shd.constraint_error

76: --
77: Exception
78: When hr_api.check_integrity_violated Then
79: -- A check constraint has been violated
80: hr_qsa_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.parent_integrity_violated Then
83: -- Parent integrity has been violated
84: hr_qsa_shd.constraint_error

Line 84: hr_qsa_shd.constraint_error

80: hr_qsa_shd.constraint_error
81: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
82: When hr_api.parent_integrity_violated Then
83: -- Parent integrity has been violated
84: hr_qsa_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.unique_integrity_violated Then
87: -- Unique integrity has been violated
88: hr_qsa_shd.constraint_error

Line 88: hr_qsa_shd.constraint_error

84: hr_qsa_shd.constraint_error
85: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
86: When hr_api.unique_integrity_violated Then
87: -- Unique integrity has been violated
88: hr_qsa_shd.constraint_error
89: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
90: When Others Then
91: Raise;
92: End update_dml;

Line 126: Procedure pre_update(p_rec in hr_qsa_shd.g_rec_type) is

122: -- Internal Row Handler Use Only.
123: --
124: -- {End Of Comments}
125: -- ----------------------------------------------------------------------------
126: Procedure pre_update(p_rec in hr_qsa_shd.g_rec_type) is
127: --
128: l_proc varchar2(72) := g_package||'pre_update';
129: --
130: Begin

Line 168: Procedure post_update(p_rec in hr_qsa_shd.g_rec_type) is

164: -- Internal Row Handler Use Only.
165: --
166: -- {End Of Comments}
167: -- ----------------------------------------------------------------------------
168: Procedure post_update(p_rec in hr_qsa_shd.g_rec_type) is
169: --
170: l_proc varchar2(72) := g_package||'post_update';
171: --
172: Begin

Line 222: Procedure convert_defs(p_rec in out nocopy hr_qsa_shd.g_rec_type) is

218: -- Internal Row Handler Use Only.
219: --
220: -- {End Of Comments}
221: -- ----------------------------------------------------------------------------
222: Procedure convert_defs(p_rec in out nocopy hr_qsa_shd.g_rec_type) is
223: --
224: l_proc varchar2(72) := g_package||'convert_defs';
225: --
226: Begin

Line 237: hr_qsa_shd.g_old_rec.questionnaire_template_id;

233: -- is being used then we must set to the 'current' argument value.
234: --
235: If (p_rec.questionnaire_template_id = hr_api.g_number) then
236: p_rec.questionnaire_template_id :=
237: hr_qsa_shd.g_old_rec.questionnaire_template_id;
238: End If;
239: If (p_rec.type = hr_api.g_varchar2) then
240: p_rec.type :=
241: hr_qsa_shd.g_old_rec.type;

Line 241: hr_qsa_shd.g_old_rec.type;

237: hr_qsa_shd.g_old_rec.questionnaire_template_id;
238: End If;
239: If (p_rec.type = hr_api.g_varchar2) then
240: p_rec.type :=
241: hr_qsa_shd.g_old_rec.type;
242: End If;
243: If (p_rec.type_object_id = hr_api.g_number) then
244: p_rec.type_object_id :=
245: hr_qsa_shd.g_old_rec.type_object_id;

Line 245: hr_qsa_shd.g_old_rec.type_object_id;

241: hr_qsa_shd.g_old_rec.type;
242: End If;
243: If (p_rec.type_object_id = hr_api.g_number) then
244: p_rec.type_object_id :=
245: hr_qsa_shd.g_old_rec.type_object_id;
246: End If;
247: If (p_rec.business_group_id = hr_api.g_number) then
248: p_rec.business_group_id :=
249: hr_qsa_shd.g_old_rec.business_group_id;

Line 249: hr_qsa_shd.g_old_rec.business_group_id;

245: hr_qsa_shd.g_old_rec.type_object_id;
246: End If;
247: If (p_rec.business_group_id = hr_api.g_number) then
248: p_rec.business_group_id :=
249: hr_qsa_shd.g_old_rec.business_group_id;
250: End If;
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 10);
253: --

Line 261: p_rec in out nocopy hr_qsa_shd.g_rec_type,

257: -- |---------------------------------< upd >----------------------------------|
258: -- ----------------------------------------------------------------------------
259: Procedure upd
260: (
261: p_rec in out nocopy hr_qsa_shd.g_rec_type,
262: p_effective_date in date
263: ) is
264: --
265: l_proc varchar2(72) := g_package||'upd';

Line 272: hr_qsa_shd.lck

268: hr_utility.set_location('Entering:'||l_proc, 5);
269: --
270: -- We must lock the row which we need to update.
271: --
272: hr_qsa_shd.lck
273: (
274: p_rec.questionnaire_answer_id
275: );
276: --

Line 312: l_rec hr_qsa_shd.g_rec_type;

308: p_business_group_id in number default hr_api.g_number,
309: p_effective_date in date
310: ) is
311: --
312: l_rec hr_qsa_shd.g_rec_type;
313: l_proc varchar2(72) := g_package||'upd';
314: --
315: Begin
316: hr_utility.set_location('Entering:'||l_proc, 5);

Line 322: hr_qsa_shd.convert_args

318: -- Call conversion function to turn arguments into the
319: -- l_rec structure.
320: --
321: l_rec :=
322: hr_qsa_shd.convert_args
323: (
324: p_questionnaire_answer_id,
325: p_questionnaire_template_id,
326: p_type,