DBA Data[Home] [Help]

APPS.OTA_FCE_INS dependencies on OTA_FCE_SHD

Line 76: (p_rec in out nocopy ota_fce_shd.g_rec_type

72: --
73: -- {End Of Comments}
74: -- ----------------------------------------------------------------------------
75: Procedure insert_dml
76: (p_rec in out nocopy ota_fce_shd.g_rec_type
77: ) is
78: --
79: l_proc varchar2(72) := g_package||'insert_dml';
80: --

Line 85: ota_fce_shd.g_api_dml := true; -- Set the api dml status

81: Begin
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: ota_fce_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: ota_open_fc_enrollments
88: --
89: insert into ota_open_fc_enrollments

Line 108: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

104: ,p_rec.object_version_number
105: ,p_rec.chat_id
106: );
107: --
108: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
109: --
110: hr_utility.set_location(' Leaving:'||l_proc, 10);
111: Exception
112: When hr_api.check_integrity_violated Then

Line 114: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

110: hr_utility.set_location(' Leaving:'||l_proc, 10);
111: Exception
112: When hr_api.check_integrity_violated Then
113: -- A check constraint has been violated
114: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
115: ota_fce_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated

Line 115: ota_fce_shd.constraint_error

111: Exception
112: When hr_api.check_integrity_violated Then
113: -- A check constraint has been violated
114: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
115: ota_fce_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated
119: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

Line 119: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

115: ota_fce_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated
119: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
120: ota_fce_shd.constraint_error
121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated

Line 120: ota_fce_shd.constraint_error

116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.parent_integrity_violated Then
118: -- Parent integrity has been violated
119: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
120: ota_fce_shd.constraint_error
121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated
124: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

Line 124: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

120: ota_fce_shd.constraint_error
121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated
124: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
125: ota_fce_shd.constraint_error
126: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
127: When Others Then
128: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

Line 125: ota_fce_shd.constraint_error

121: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122: When hr_api.unique_integrity_violated Then
123: -- Unique integrity has been violated
124: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
125: ota_fce_shd.constraint_error
126: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
127: When Others Then
128: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
129: Raise;

Line 128: ota_fce_shd.g_api_dml := false; -- Unset the api dml status

124: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
125: ota_fce_shd.constraint_error
126: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
127: When Others Then
128: ota_fce_shd.g_api_dml := false; -- Unset the api dml status
129: Raise;
130: End insert_dml;
131: --
132: -- ----------------------------------------------------------------------------

Line 170: (p_rec in out nocopy ota_fce_shd.g_rec_type

166: --
167: -- {End Of Comments}
168: -- ----------------------------------------------------------------------------
169: Procedure pre_insert
170: (p_rec in out nocopy ota_fce_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select ota_open_fc_enrollments_s.nextval from sys.dual;
174: --

Line 258: ,p_rec in ota_fce_shd.g_rec_type

254: -- {End Of Comments}
255: -- ----------------------------------------------------------------------------
256: Procedure post_insert
257: (p_effective_date in date
258: ,p_rec in ota_fce_shd.g_rec_type
259: ) is
260: --
261: l_proc varchar2(72) := g_package||'post_insert';
262: --

Line 303: ,p_rec in out nocopy ota_fce_shd.g_rec_type

299: -- |---------------------------------< ins >----------------------------------|
300: -- ----------------------------------------------------------------------------
301: Procedure ins
302: (p_effective_date in date
303: ,p_rec in out nocopy ota_fce_shd.g_rec_type
304: ) is
305: --
306: l_proc varchar2(72) := g_package||'ins';
307: --

Line 356: l_rec ota_fce_shd.g_rec_type;

352: ,p_enrollment_id out nocopy number
353: ,p_object_version_number out nocopy number
354: ) is
355: --
356: l_rec ota_fce_shd.g_rec_type;
357: l_proc varchar2(72) := g_package||'ins';
358: --
359: Begin
360: hr_utility.set_location('Entering:'||l_proc, 5);

Line 366: ota_fce_shd.convert_args

362: -- Call conversion function to turn arguments into the
363: -- p_rec structure.
364: --
365: l_rec :=
366: ota_fce_shd.convert_args
367: (null
368: ,p_forum_id
369: ,p_business_group_id
370: ,p_person_id