DBA Data[Home] [Help]

APPS.PER_ZA_LSA_DEL dependencies on PER_ZA_LSA_SHD

Line 51: Procedure delete_dml(p_rec in per_za_lsa_shd.g_za_rec_type) is

47: -- Internal Table Handler Use Only.
48: --
49: -- {End Of Comments}
50: -- ----------------------------------------------------------------------------
51: Procedure delete_dml(p_rec in per_za_lsa_shd.g_za_rec_type) is
52: --
53: l_proc varchar2(72) := g_package||'delete_dml';
54: --
55: Begin

Line 58: per_za_lsa_shd.g_api_dml := true; -- Set the api dml status

54: --
55: Begin
56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: per_za_lsa_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_qualifications row.
61: --
62: delete from per_za_learnership_agreements

Line 65: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status

61: --
62: delete from per_za_learnership_agreements
63: where agreement_id = p_rec.agreement_id;
64: --
65: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception

Line 72: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status

68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated
72: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
73: per_za_lsa_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75: When Others Then
76: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status

Line 73: per_za_lsa_shd.constraint_error

69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated
72: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
73: per_za_lsa_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75: When Others Then
76: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
77: Raise;

Line 76: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status

72: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
73: per_za_lsa_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75: When Others Then
76: per_za_lsa_shd.g_api_dml := false; -- Unset the api dml status
77: Raise;
78: End delete_dml;
79: --
80: -- ----------------------------------------------------------------------------

Line 112: Procedure pre_delete(p_rec in per_za_lsa_shd.g_za_rec_type) is

108: -- Internal Table Handler Use Only.
109: --
110: -- {End Of Comments}
111: -- ----------------------------------------------------------------------------
112: Procedure pre_delete(p_rec in per_za_lsa_shd.g_za_rec_type) is
113: --
114: l_proc varchar2(72) := g_package||'pre_delete';
115: --
116: Begin

Line 154: Procedure post_delete(p_rec in per_za_lsa_shd.g_za_rec_type) is

150: -- Internal table Handler Use Only.
151: --
152: -- {End Of Comments}
153: -- ----------------------------------------------------------------------------
154: Procedure post_delete(p_rec in per_za_lsa_shd.g_za_rec_type) is
155: --
156: l_proc varchar2(72) := g_package||'post_delete';
157: --
158: Begin

Line 169: p_rec in per_za_lsa_shd.g_za_rec_type,

165: -- |---------------------------------< del >----------------------------------|
166: -- ----------------------------------------------------------------------------
167: Procedure del
168: (
169: p_rec in per_za_lsa_shd.g_za_rec_type,
170: p_validate in boolean default false
171: ) is
172: --
173: l_proc varchar2(72) := g_package||'del';

Line 189: per_za_lsa_shd.lck

185: End If;
186: --
187: -- We must lock the row which we need to delete.
188: --
189: per_za_lsa_shd.lck
190: (
191: p_rec.agreement_id,
192: p_rec.person_id
193: );

Line 236: l_rec per_za_lsa_shd.g_za_rec_type;

232: p_agreement_id in number,
233: p_validate in boolean default false
234: ) is
235: --
236: l_rec per_za_lsa_shd.g_za_rec_type;
237: l_proc varchar2(72) := g_package||'del';
238: --
239: Begin
240: hr_utility.set_location('Entering:'||l_proc, 5);