DBA Data[Home] [Help]

APPS.HR_PAB_INS dependencies on HR_PAB_SHD

Line 53: Procedure insert_dml(p_rec in out hr_pab_shd.g_rec_type) is

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

Line 61: hr_pab_shd.g_api_dml := true; -- Set the api dml status

57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: hr_pab_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: hr_pattern_bits
64: --
65: insert into hr_pattern_bits

Line 82: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

78: p_rec.base_time_unit,
79: p_rec.object_version_number
80: );
81: --
82: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
83: --
84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: Exception
86: When hr_api.check_integrity_violated Then

Line 88: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
89: hr_pab_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated

Line 89: hr_pab_shd.constraint_error

85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
89: hr_pab_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

Line 93: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

89: hr_pab_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
94: hr_pab_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated

Line 94: hr_pab_shd.constraint_error

90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
94: hr_pab_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

Line 98: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

94: hr_pab_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
99: hr_pab_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

Line 99: hr_pab_shd.constraint_error

95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
99: hr_pab_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;

Line 102: hr_pab_shd.g_api_dml := false; -- Unset the api dml status

98: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
99: hr_pab_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: hr_pab_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;
104: End insert_dml;
105: --
106: -- ----------------------------------------------------------------------------

Line 143: Procedure pre_insert(p_rec in out hr_pab_shd.g_rec_type) is

139: -- Internal Table Handler Use Only.
140: --
141: -- {End Of Comments}
142: -- ----------------------------------------------------------------------------
143: Procedure pre_insert(p_rec in out hr_pab_shd.g_rec_type) is
144: --
145: l_proc varchar2(72) := g_package||'pre_insert';
146: --
147: Cursor C_Sel1 is select hr_pattern_bits_s.nextval from sys.dual;

Line 194: Procedure post_insert(p_rec in hr_pab_shd.g_rec_type) is

190: -- Internal Table Handler Use Only.
191: --
192: -- {End Of Comments}
193: -- ----------------------------------------------------------------------------
194: Procedure post_insert(p_rec in hr_pab_shd.g_rec_type) is
195: --
196: l_proc varchar2(72) := g_package||'post_insert';
197: --
198: Begin

Line 209: p_rec in out hr_pab_shd.g_rec_type,

205: -- |---------------------------------< ins >----------------------------------|
206: -- ----------------------------------------------------------------------------
207: Procedure ins
208: (
209: p_rec in out hr_pab_shd.g_rec_type,
210: p_validate in boolean default false
211: ) is
212: --
213: l_proc varchar2(72) := g_package||'ins';

Line 273: l_rec hr_pab_shd.g_rec_type;

269: p_object_version_number out number,
270: p_validate in boolean default false
271: ) is
272: --
273: l_rec hr_pab_shd.g_rec_type;
274: l_proc varchar2(72) := g_package||'ins';
275: --
276: Begin
277: hr_utility.set_location('Entering:'||l_proc, 5);

Line 283: hr_pab_shd.convert_args

279: -- Call conversion function to turn arguments into the
280: -- p_rec structure.
281: --
282: l_rec :=
283: hr_pab_shd.convert_args
284: (
285: null,
286: p_pattern_bit_code,
287: p_bit_meaning,