DBA Data[Home] [Help]

APPS.PQH_TCA_INS dependencies on PQH_TCA_SHD

Line 47: Procedure insert_dml(p_rec in out nocopy pqh_tca_shd.g_rec_type) is

43: -- Internal Row Handler Use Only.
44: --
45: -- {End Of Comments}
46: -- ----------------------------------------------------------------------------
47: Procedure insert_dml(p_rec in out nocopy pqh_tca_shd.g_rec_type) is
48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin

Line 94: pqh_tca_shd.constraint_error

90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: Exception
92: When hr_api.check_integrity_violated Then
93: -- A check constraint has been violated
94: pqh_tca_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.parent_integrity_violated Then
97: -- Parent integrity has been violated
98: pqh_tca_shd.constraint_error

Line 98: pqh_tca_shd.constraint_error

94: pqh_tca_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.parent_integrity_violated Then
97: -- Parent integrity has been violated
98: pqh_tca_shd.constraint_error
99: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
100: When hr_api.unique_integrity_violated Then
101: -- Unique integrity has been violated
102: pqh_tca_shd.constraint_error

Line 102: pqh_tca_shd.constraint_error

98: pqh_tca_shd.constraint_error
99: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
100: When hr_api.unique_integrity_violated Then
101: -- Unique integrity has been violated
102: pqh_tca_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When Others Then
105: Raise;
106: End insert_dml;

Line 145: Procedure pre_insert(p_rec in out nocopy pqh_tca_shd.g_rec_type) is

141: -- Internal Row Handler Use Only.
142: --
143: -- {End Of Comments}
144: -- ----------------------------------------------------------------------------
145: Procedure pre_insert(p_rec in out nocopy pqh_tca_shd.g_rec_type) is
146: --
147: l_proc varchar2(72) := g_package||'pre_insert';
148: --
149: Cursor C_Sel1 is select pqh_txn_category_attributes_s.nextval from sys.dual;

Line 197: p_effective_date in date,p_rec in pqh_tca_shd.g_rec_type) is

193: --
194: -- {End Of Comments}
195: -- ----------------------------------------------------------------------------
196: Procedure post_insert(
197: p_effective_date in date,p_rec in pqh_tca_shd.g_rec_type) is
198: --
199: l_proc varchar2(72) := g_package||'post_insert';
200: --
201: Begin

Line 249: p_rec in out nocopy pqh_tca_shd.g_rec_type

245: -- ----------------------------------------------------------------------------
246: Procedure ins
247: (
248: p_effective_date in date,
249: p_rec in out nocopy pqh_tca_shd.g_rec_type
250: ) is
251: --
252: l_proc varchar2(72) := g_package||'ins';
253: --

Line 297: l_rec pqh_tca_shd.g_rec_type;

293: p_select_flag in varchar2 default null,
294: p_value_style_cd in varchar2
295: ) is
296: --
297: l_rec pqh_tca_shd.g_rec_type;
298: l_proc varchar2(72) := g_package||'ins';
299: --
300: Begin
301: hr_utility.set_location('Entering:'||l_proc, 5);

Line 307: pqh_tca_shd.convert_args

303: -- Call conversion function to turn arguments into the
304: -- p_rec structure.
305: --
306: l_rec :=
307: pqh_tca_shd.convert_args
308: (
309: null,
310: p_attribute_id,
311: p_transaction_category_id,