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 113: pqh_tca_shd.constraint_error

109: hr_utility.set_location(' Leaving:'||l_proc, 10);
110: Exception
111: When hr_api.check_integrity_violated Then
112: -- A check constraint has been violated
113: pqh_tca_shd.constraint_error
114: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
115: When hr_api.parent_integrity_violated Then
116: -- Parent integrity has been violated
117: pqh_tca_shd.constraint_error

Line 117: pqh_tca_shd.constraint_error

113: pqh_tca_shd.constraint_error
114: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
115: When hr_api.parent_integrity_violated Then
116: -- Parent integrity has been violated
117: pqh_tca_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.unique_integrity_violated Then
120: -- Unique integrity has been violated
121: pqh_tca_shd.constraint_error

Line 121: pqh_tca_shd.constraint_error

117: pqh_tca_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.unique_integrity_violated Then
120: -- Unique integrity has been violated
121: pqh_tca_shd.constraint_error
122: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
123: When Others Then
124: Raise;
125: End insert_dml;

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

160: -- Internal Row Handler Use Only.
161: --
162: -- {End Of Comments}
163: -- ----------------------------------------------------------------------------
164: Procedure pre_insert(p_rec in out nocopy pqh_tca_shd.g_rec_type) is
165: --
166: l_proc varchar2(72) := g_package||'pre_insert';
167: --
168: Cursor C_Sel1 is select pqh_txn_category_attributes_s.nextval from sys.dual;

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

212: --
213: -- {End Of Comments}
214: -- ----------------------------------------------------------------------------
215: Procedure post_insert(
216: p_effective_date in date,p_rec in pqh_tca_shd.g_rec_type) is
217: --
218: l_proc varchar2(72) := g_package||'post_insert';
219: --
220: Begin

Line 268: p_rec in out nocopy pqh_tca_shd.g_rec_type

264: -- ----------------------------------------------------------------------------
265: Procedure ins
266: (
267: p_effective_date in date,
268: p_rec in out nocopy pqh_tca_shd.g_rec_type
269: ) is
270: --
271: l_proc varchar2(72) := g_package||'ins';
272: --

Line 316: l_rec pqh_tca_shd.g_rec_type;

312: p_select_flag in varchar2 default null,
313: p_value_style_cd in varchar2
314: ) is
315: --
316: l_rec pqh_tca_shd.g_rec_type;
317: l_proc varchar2(72) := g_package||'ins';
318: --
319: Begin
320: hr_utility.set_location('Entering:'||l_proc, 5);

Line 326: pqh_tca_shd.convert_args

322: -- Call conversion function to turn arguments into the
323: -- p_rec structure.
324: --
325: l_rec :=
326: pqh_tca_shd.convert_args
327: (
328: null,
329: p_attribute_id,
330: p_transaction_category_id,