DBA Data[Home] [Help]

APPS.PQH_DOC_INS dependencies on PQH_DOC_SHD

Line 80: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type

76: --
77: -- {End Of Comments}
78: -- ----------------------------------------------------------------------------
79: Procedure dt_insert_dml
80: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type
81: ,p_effective_date in date
82: ,p_datetrack_mode in varchar2
83: ,p_validation_start_date in date
84: ,p_validation_end_date in date

Line 94: pqh_doc_shd.g_old_rec.effective_start_date

90: t.creation_date
91: from pqh_documents_f t
92: where t.document_id = p_rec.document_id
93: and t.effective_start_date =
94: pqh_doc_shd.g_old_rec.effective_start_date
95: and t.effective_end_date = (p_validation_start_date - 1);
96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by pqh_documents_f.created_by%TYPE;

Line 152: pqh_doc_shd.g_api_dml := true; -- Set the api dml status

148: l_last_updated_by := fnd_global.user_id;
149: l_last_update_login := fnd_global.login_id;
150: End If;
151: --
152: pqh_doc_shd.g_api_dml := true; -- Set the api dml status
153: --
154: -- Insert the row into: pqh_documents_f
155: --
156: insert into pqh_documents_f

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

195: ,p_rec.language
196: ,p_rec.territory
197: );
198: --
199: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
200: hr_utility.set_location(' Leaving:'||l_proc, 15);
201: --
202: Exception
203: When hr_api.check_integrity_violated Then

Line 205: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status

201: --
202: Exception
203: When hr_api.check_integrity_violated Then
204: -- A check constraint has been violated
205: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
206: pqh_doc_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated

Line 206: pqh_doc_shd.constraint_error

202: Exception
203: When hr_api.check_integrity_violated Then
204: -- A check constraint has been violated
205: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
206: pqh_doc_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status

Line 210: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status

206: pqh_doc_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
211: pqh_doc_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
213: When Others Then
214: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status

Line 211: pqh_doc_shd.constraint_error

207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
211: pqh_doc_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
213: When Others Then
214: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
215: Raise;

Line 214: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status

210: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
211: pqh_doc_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
213: When Others Then
214: pqh_doc_shd.g_api_dml := false; -- Unset the api dml status
215: Raise;
216: End dt_insert_dml;
217: --
218: -- ----------------------------------------------------------------------------

Line 222: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type

218: -- ----------------------------------------------------------------------------
219: -- |------------------------------< insert_dml >------------------------------|
220: -- ----------------------------------------------------------------------------
221: Procedure insert_dml
222: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type
223: ,p_effective_date in date
224: ,p_datetrack_mode in varchar2
225: ,p_validation_start_date in date
226: ,p_validation_end_date in date

Line 285: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type

281: --
282: -- {End Of Comments}
283: -- ----------------------------------------------------------------------------
284: Procedure pre_insert
285: (p_rec in out NOCOPY pqh_doc_shd.g_rec_type
286: ,p_effective_date in date
287: ,p_datetrack_mode in varchar2
288: ,p_validation_start_date in date
289: ,p_validation_end_date in date

Line 377: (p_rec in pqh_doc_shd.g_rec_type

373: --
374: -- {End Of Comments}
375: -- ----------------------------------------------------------------------------
376: Procedure post_insert
377: (p_rec in pqh_doc_shd.g_rec_type
378: ,p_effective_date in date
379: ,p_datetrack_mode in varchar2
380: ,p_validation_start_date in date
381: ,p_validation_end_date in date

Line 480: ,p_rec in pqh_doc_shd.g_rec_type

476: -- ----------------------------------------------------------------------------
477: Procedure ins_lck
478: (p_effective_date in date
479: ,p_datetrack_mode in varchar2
480: ,p_rec in pqh_doc_shd.g_rec_type
481: ,p_validation_start_date out NOCOPY date
482: ,p_validation_end_date out NOCOPY date
483: ) is
484: --

Line 520: ,p_rec in out NOCOPY pqh_doc_shd.g_rec_type

516: -- |---------------------------------< ins >----------------------------------|
517: -- ----------------------------------------------------------------------------
518: Procedure ins
519: (p_effective_date in date
520: ,p_rec in out NOCOPY pqh_doc_shd.g_rec_type
521: ) is
522: --
523: l_proc varchar2(72) := g_package||'ins';
524: l_datetrack_mode varchar2(30) := hr_api.g_insert;

Line 611: l_rec pqh_doc_shd.g_rec_type;

607: ,p_language in varchar2
608: ,p_territory in varchar2
609: ) is
610: --
611: l_rec pqh_doc_shd.g_rec_type;
612: l_proc varchar2(72) := g_package||'ins';
613: --
614: Begin
615: hr_utility.set_location('Entering:'||l_proc, 5);

Line 621: pqh_doc_shd.convert_args

617: -- Call conversion function to turn arguments into the
618: -- p_rec structure.
619: --
620: l_rec :=
621: pqh_doc_shd.convert_args
622: (null
623: ,null
624: ,null
625: ,p_short_name