DBA Data[Home] [Help]

PACKAGE: APPS.PER_QAT_INS

Source


1 Package per_qat_ins as
2 /* $Header: peqatrhi.pkh 120.0 2005/05/31 16:07:16 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------------< ins_tl >----------------------------------|
6 -- ----------------------------------------------------------------------------
7 --
8 -- {Start of Comments}
9 --
10 -- Description:
11 --   This procedure is the main interface for inserting rows into the
12 --   translated table.  It will insert a row into the translated (_TL)
13 --   table for the base language and every installed language.
14 --
15 -- Pre-requisites:
16 --   A unique surrogate key ID value has been assigned and a valid row
17 --   has been successfully inserted into the non-translated table.
18 --
19 -- In Parameters:
20 --   p_language_code must be set to the base or any installed language.
21 --
22 -- Post Success:
23 --   A fully validated row will be inserted into the _TL table for the
24 --   base language and every installed language.  None of the rows will
25 --   be committed to the database.
26 --
27 -- Post Failure:
28 --   If an error has occurred a pl/sql exception will be raised.
29 --
30 -- Developer Implementation Notes:
31 --   None.
32 --
33 -- Access Status:
34 --   Internal Development Use Only.
35 --
36 -- {End of Comments}
37 -- ----------------------------------------------------------------------------
38 Procedure ins_tl
39   (p_language_code                in varchar2
40   ,p_qualification_id             in number
41   ,p_title                        in varchar2 default null
42   ,p_group_ranking                in varchar2 default null
43   ,p_license_restrictions         in varchar2 default null
44   ,p_awarding_body                in varchar2 default null
45   ,p_grade_attained               in varchar2 default null
46   ,p_reimbursement_arrangements   in varchar2 default null
47   ,p_training_completed_units     in varchar2 default null
48   ,p_membership_category          in varchar2 default null
49   );
50 --
51 end per_qat_ins;