DBA Data[Home] [Help]

APPS.HR_ABM_DEL dependencies on HR_ABM_SHD

Line 51: Procedure delete_dml(p_rec in hr_abm_shd.g_rec_type) is

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

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

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

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

61: --
62: delete from hr_api_batch_message_lines
63: where line_id = p_rec.line_id;
64: --
65: hr_abm_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: hr_abm_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: hr_abm_shd.g_api_dml := false; -- Unset the api dml status
73: hr_abm_shd.constraint_error
74: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
75: When Others Then
76: hr_abm_shd.g_api_dml := false; -- Unset the api dml status

Line 73: hr_abm_shd.constraint_error

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

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

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

Line 85: p_rec in hr_abm_shd.g_rec_type,

81: -- |---------------------------------< del >----------------------------------|
82: -- ----------------------------------------------------------------------------
83: Procedure del
84: (
85: p_rec in hr_abm_shd.g_rec_type,
86: p_validate in boolean default false
87: ) is
88: --
89: l_proc varchar2(72) := g_package||'del';

Line 105: hr_abm_shd.lck(p_rec.line_id);

101: End If;
102: --
103: -- We must lock the row which we need to delete.
104: --
105: hr_abm_shd.lck(p_rec.line_id);
106: --
107: -- Delete the row.
108: --
109: delete_dml(p_rec);

Line 134: l_rec hr_abm_shd.g_rec_type;

130: Procedure del
131: (p_line_id in number,
132: p_validate in boolean default false) is
133: --
134: l_rec hr_abm_shd.g_rec_type;
135: l_proc varchar2(72) := g_package||'del';
136: --
137: Begin
138: hr_utility.set_location('Entering:'||l_proc, 5);