DBA Data[Home] [Help]

APPS.FF_ARC_INS dependencies on FF_ARC_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy ff_arc_shd.g_rec_type) is

49: -- Internal Row Handler Use Only.
50: --
51: -- {End Of Comments}
52: -- ----------------------------------------------------------------------------
53: Procedure insert_dml(p_rec in out nocopy ff_arc_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: l_created_by ff_archive_items.created_by%TYPE;

Line 67: ff_arc_shd.g_api_dml := true; -- Set the api dml status

63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: p_rec.object_version_number := 1; -- Initialise the object version
66: --
67: ff_arc_shd.g_api_dml := true; -- Set the api dml status
68: --
69: -- Set the AOL insert WHO values
70: --
71: l_created_by := fnd_global.user_id;

Line 106: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

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

Line 112: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

108: hr_utility.set_location(' Leaving:'||l_proc, 10);
109: Exception
110: When hr_api.check_integrity_violated Then
111: -- A check constraint has been violated
112: ff_arc_shd.g_api_dml := false; -- Unset the api dml status
113: ff_arc_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

Line 113: ff_arc_shd.constraint_error

109: Exception
110: When hr_api.check_integrity_violated Then
111: -- A check constraint has been violated
112: ff_arc_shd.g_api_dml := false; -- Unset the api dml status
113: ff_arc_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: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

Line 117: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

113: ff_arc_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: ff_arc_shd.g_api_dml := false; -- Unset the api dml status
118: ff_arc_shd.constraint_error
119: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
120: When hr_api.unique_integrity_violated Then
121: -- Unique integrity has been violated

Line 118: ff_arc_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: ff_arc_shd.g_api_dml := false; -- Unset the api dml status
118: ff_arc_shd.constraint_error
119: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
120: When hr_api.unique_integrity_violated Then
121: -- Unique integrity has been violated
122: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

Line 122: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

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

Line 123: ff_arc_shd.constraint_error

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

Line 126: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

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

Line 167: Procedure pre_insert(p_rec in out nocopy ff_arc_shd.g_rec_type) is

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

Line 218: Procedure post_insert(p_rec in ff_arc_shd.g_rec_type) is

214: -- Internal Row Handler Use Only.
215: --
216: -- {End Of Comments}
217: -- ----------------------------------------------------------------------------
218: Procedure post_insert(p_rec in ff_arc_shd.g_rec_type) is
219: --
220: l_proc varchar2(72) := g_package||'post_insert';
221: --
222: Begin

Line 233: p_rec in out nocopy ff_arc_shd.g_rec_type

229: -- |---------------------------------< ins >----------------------------------|
230: -- ----------------------------------------------------------------------------
231: Procedure ins
232: (
233: p_rec in out nocopy ff_arc_shd.g_rec_type
234: ) is
235: --
236: l_proc varchar2(72) := g_package||'ins';
237: --

Line 271: l_rec ff_arc_shd.g_rec_type;

267: p_value in varchar2 default null,
268: p_object_version_number out nocopy number
269: ) is
270: --
271: l_rec ff_arc_shd.g_rec_type;
272: l_proc varchar2(72) := g_package||'ins';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);

Line 281: ff_arc_shd.convert_args

277: -- Call conversion function to turn arguments into the
278: -- p_rec structure.
279: --
280: l_rec :=
281: ff_arc_shd.convert_args
282: (
283: null,
284: p_user_entity_id,
285: p_archive_type,