DBA Data[Home] [Help]

PACKAGE: APPS.HR_SOURCE_FORM_TEMPLATES_BSI

Source


1 Package hr_source_form_templates_bsi AUTHID CURRENT_USER as
2 /* $Header: hrsftbsi.pkh 115.2 2003/09/24 02:00:35 bsubrama noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< create_source_form_template >------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description: This business support process inserts a new source form
10 --              template in the HR Schema.
11 --
12 -- Prerequisites:
13 --
14 --
15 -- In Parameters:
16 --   Name                           Reqd Type     Description
17 --   p_form_template_id_to          Y    Number
18 --   p_form_template_id_from        Y    Number
19 --
20 --
21 -- Post Success:
22 --
23 --
24 --   Name                           Type     Description
25 --   p_source_form_template_id      Number
26 --
27 -- Post Failure:
28 --
29 --
30 -- Access Status:
31 --   Public.
32 --
33 -- {End Of Comments}
34 --
35 procedure create_source_form_template
36   (p_validate                      in     boolean  default false
37   ,p_effective_date                in     date
38   ,p_form_template_id_from         in     number
39   ,p_form_template_id_to           in     number
40   ,p_source_form_template_id       out nocopy    number
41   ,p_object_version_number         out nocopy number
42   );
43 --
44 --
45 -- ----------------------------------------------------------------------------
46 -- |--------------------------< delete_source_form_template >-----------------|
47 -- ----------------------------------------------------------------------------
48 -- {Start Of Comments}
49 --
50 -- Description: This business support process deletes a source form
51 --              template from the HR Schema.
52 --
53 -- Prerequisites:
54 --
55 --
56 -- In Parameters:
57 --   Name                           Reqd Type     Description
58 --   p_source_form_template_id      Y    Number
59 --
60 --
61 -- Post Success:
62 --
63 --
64 --   Name                           Type     Description
65 --
66 -- Post Failure:
67 --
68 --
69 -- Access Status:
70 --   Public.
71 --
72 -- {End Of Comments}
73 --
74 procedure delete_source_form_template
75   (p_validate                      in     boolean  default false
76   ,p_source_form_template_id       in     number
77   ,p_object_version_number         in     number
78   );
79 --
80 end hr_source_form_templates_bsi;