DBA Data[Home] [Help]

APPS.PAY_GRR_INS dependencies on PAY_GRR_SHD

Line 58: (p_rec in out nocopy pay_grr_shd.g_rec_type,

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_insert_dml
58: (p_rec in out nocopy pay_grr_shd.g_rec_type,
59: p_effective_date in date,
60: p_datetrack_mode in varchar2,
61: p_validation_start_date in date,
62: p_validation_end_date in date) is

Line 72: pay_grr_shd.g_old_rec.effective_start_date

68: t.creation_date
69: from pay_grade_rules_f t
70: where t.grade_rule_id = p_rec.grade_rule_id
71: and t.effective_start_date =
72: pay_grr_shd.g_old_rec.effective_start_date
73: and t.effective_end_date = (p_validation_start_date - 1);
74: --
75: l_proc varchar2(72) := g_package||'dt_insert_dml';
76: l_created_by pay_grade_rules_f.created_by%TYPE;

Line 129: pay_grr_shd.g_api_dml := true; -- Set the api dml status

125: l_last_updated_by := fnd_global.user_id;
126: l_last_update_login := fnd_global.login_id;
127: End If;
128: --
129: pay_grr_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: pay_grade_rules_f
132: --
133: insert into pay_grade_rules_f

Line 184: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

180: l_last_updated_by,
181: l_last_update_login
182: );
183: --
184: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
185: hr_utility.set_location(' Leaving:'||l_proc, 15);
186: --
187: Exception
188: When hr_api.check_integrity_violated Then

Line 190: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

186: --
187: Exception
188: When hr_api.check_integrity_violated Then
189: -- A check constraint has been violated
190: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
191: pay_grr_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When hr_api.unique_integrity_violated Then
194: -- Unique integrity has been violated

Line 191: pay_grr_shd.constraint_error

187: Exception
188: When hr_api.check_integrity_violated Then
189: -- A check constraint has been violated
190: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
191: pay_grr_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When hr_api.unique_integrity_violated Then
194: -- Unique integrity has been violated
195: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

Line 195: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

191: pay_grr_shd.constraint_error
192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When hr_api.unique_integrity_violated Then
194: -- Unique integrity has been violated
195: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
196: pay_grr_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When Others Then
199: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

Line 196: pay_grr_shd.constraint_error

192: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
193: When hr_api.unique_integrity_violated Then
194: -- Unique integrity has been violated
195: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
196: pay_grr_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When Others Then
199: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
200: Raise;

Line 199: pay_grr_shd.g_api_dml := false; -- Unset the api dml status

195: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
196: pay_grr_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When Others Then
199: pay_grr_shd.g_api_dml := false; -- Unset the api dml status
200: Raise;
201: End dt_insert_dml;
202: --
203: -- ----------------------------------------------------------------------------

Line 207: (p_rec in out nocopy pay_grr_shd.g_rec_type,

203: -- ----------------------------------------------------------------------------
204: -- |------------------------------< insert_dml >------------------------------|
205: -- ----------------------------------------------------------------------------
206: Procedure insert_dml
207: (p_rec in out nocopy pay_grr_shd.g_rec_type,
208: p_effective_date in date,
209: p_datetrack_mode in varchar2,
210: p_validation_start_date in date,
211: p_validation_end_date in date) is

Line 267: (p_rec in out nocopy pay_grr_shd.g_rec_type,

263: --
264: -- {End Of Comments}
265: -- ----------------------------------------------------------------------------
266: Procedure pre_insert
267: (p_rec in out nocopy pay_grr_shd.g_rec_type,
268: p_effective_date in date,
269: p_datetrack_mode in varchar2,
270: p_validation_start_date in date,
271: p_validation_end_date in date) is

Line 324: (p_rec in pay_grr_shd.g_rec_type,

320: --
321: -- {End Of Comments}
322: -- ----------------------------------------------------------------------------
323: Procedure post_insert
324: (p_rec in pay_grr_shd.g_rec_type,
325: p_effective_date in date,
326: p_datetrack_mode in varchar2,
327: p_validation_start_date in date,
328: p_validation_end_date in date) is

Line 378: p_rec in pay_grr_shd.g_rec_type,

374: -- ----------------------------------------------------------------------------
375: Procedure ins_lck
376: (p_effective_date in date,
377: p_datetrack_mode in varchar2,
378: p_rec in pay_grr_shd.g_rec_type,
379: p_validation_start_date out nocopy date,
380: p_validation_end_date out nocopy date) is
381: --
382: l_proc varchar2(72) := g_package||'ins_lck';

Line 416: p_rec in out nocopy pay_grr_shd.g_rec_type,

412: -- |---------------------------------< ins >----------------------------------|
413: -- ----------------------------------------------------------------------------
414: Procedure ins
415: (
416: p_rec in out nocopy pay_grr_shd.g_rec_type,
417: p_effective_date in date,
418: p_validate in boolean default false
419: ) is
420: --

Line 526: l_rec pay_grr_shd.g_rec_type;

522: p_validate in boolean default false,
523: p_currency_code in varchar2 default null
524: ) is
525: --
526: l_rec pay_grr_shd.g_rec_type;
527: l_proc varchar2(72) := g_package||'ins';
528: --
529: Begin
530: hr_utility.set_location('Entering:'||l_proc, 5);

Line 536: pay_grr_shd.convert_args

532: -- Call conversion function to turn arguments into the
533: -- p_rec structure.
534: --
535: l_rec :=
536: pay_grr_shd.convert_args
537: (
538: null,
539: null,
540: null,