DBA Data[Home] [Help]

APPS.PAY_AMT_UPD dependencies on PAY_AMT_SHD

Line 55: (p_rec in out nocopy pay_amt_shd.g_rec_type

51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml
55: (p_rec in out nocopy pay_amt_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72);
59: --

Line 68: pay_amt_shd.g_api_dml := true; -- Set the api dml status

64: --
65: -- Increment the object version
66: p_rec.object_version_number := p_rec.object_version_number + 1;
67: --
68: pay_amt_shd.g_api_dml := true; -- Set the api dml status
69: --
70: -- Update the pay_au_module_types Row
71: --
72: update pay_au_module_types

Line 81: pay_amt_shd.g_api_dml := false; -- Unset the api dml status

77: ,description = p_rec.description
78: ,object_version_number = p_rec.object_version_number
79: where module_type_id = p_rec.module_type_id;
80: --
81: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
82: --
83: hr_utility.set_location(' Leaving:'||l_proc, 10);
84: --
85: Exception

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

84: --
85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
89: pay_amt_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: pay_amt_shd.constraint_error

85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
89: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status

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

89: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
94: pay_amt_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: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
94: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status

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

94: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
99: pay_amt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: pay_amt_shd.g_api_dml := false; -- Unset the api dml status

Line 99: pay_amt_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: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
99: pay_amt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: pay_amt_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;

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

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

Line 139: (p_rec in pay_amt_shd.g_rec_type

135: --
136: -- {End Of Comments}
137: -- ----------------------------------------------------------------------------
138: Procedure pre_update
139: (p_rec in pay_amt_shd.g_rec_type
140: ) is
141: --
142: l_proc varchar2(72);
143: --

Line 185: (p_rec in pay_amt_shd.g_rec_type

181: --
182: -- {End Of Comments}
183: -- ----------------------------------------------------------------------------
184: Procedure post_update
185: (p_rec in pay_amt_shd.g_rec_type
186: ) is
187: --
188: l_proc varchar2(72);
189: --

Line 242: (p_rec in out nocopy pay_amt_shd.g_rec_type

238: --
239: -- {End Of Comments}
240: -- ----------------------------------------------------------------------------
241: Procedure convert_defs
242: (p_rec in out nocopy pay_amt_shd.g_rec_type
243: ) is
244: --
245: Begin
246: --

Line 254: pay_amt_shd.g_old_rec.name;

250: -- is being used then we must set to the 'current' argument value.
251: --
252: If (p_rec.name = hr_api.g_varchar2) then
253: p_rec.name :=
254: pay_amt_shd.g_old_rec.name;
255: End If;
256: If (p_rec.enabled_flag = hr_api.g_varchar2) then
257: p_rec.enabled_flag :=
258: pay_amt_shd.g_old_rec.enabled_flag;

Line 258: pay_amt_shd.g_old_rec.enabled_flag;

254: pay_amt_shd.g_old_rec.name;
255: End If;
256: If (p_rec.enabled_flag = hr_api.g_varchar2) then
257: p_rec.enabled_flag :=
258: pay_amt_shd.g_old_rec.enabled_flag;
259: End If;
260: If (p_rec.description = hr_api.g_varchar2) then
261: p_rec.description :=
262: pay_amt_shd.g_old_rec.description;

Line 262: pay_amt_shd.g_old_rec.description;

258: pay_amt_shd.g_old_rec.enabled_flag;
259: End If;
260: If (p_rec.description = hr_api.g_varchar2) then
261: p_rec.description :=
262: pay_amt_shd.g_old_rec.description;
263: End If;
264: --
265: End convert_defs;
266: --

Line 271: (p_rec in out nocopy pay_amt_shd.g_rec_type

267: -- ----------------------------------------------------------------------------
268: -- |---------------------------------< upd >----------------------------------|
269: -- ----------------------------------------------------------------------------
270: Procedure upd
271: (p_rec in out nocopy pay_amt_shd.g_rec_type
272: ) is
273: --
274: l_proc varchar2(72);
275: --

Line 283: pay_amt_shd.lck

279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: -- We must lock the row which we need to update.
282: --
283: pay_amt_shd.lck
284: (p_rec.module_type_id
285: ,p_rec.object_version_number
286: );
287: --

Line 331: l_rec pay_amt_shd.g_rec_type;

327: ,p_enabled_flag in varchar2
328: ,p_description in varchar2
329: ) is
330: --
331: l_rec pay_amt_shd.g_rec_type;
332: l_proc varchar2(72);
333: --
334: Begin
335: l_proc := g_package||'upd';

Line 343: pay_amt_shd.convert_args

339: -- Call conversion function to turn arguments into the
340: -- l_rec structure.
341: --
342: l_rec :=
343: pay_amt_shd.convert_args
344: (p_module_type_id
345: ,p_name
346: ,p_enabled_flag
347: ,p_description