DBA Data[Home] [Help]

APPS.HR_FORM_TEMPLATE_INFO dependencies on HR_FORM_TEMPLATES_B

Line 8: (form_template_id hr_form_templates_b.form_template_id%TYPE

4: --
5: -- Global types
6: --
7: TYPE t_form_template IS RECORD
8: (form_template_id hr_form_templates_b.form_template_id%TYPE
9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE

Line 9: ,application_id hr_form_templates_b.application_id%TYPE

5: -- Global types
6: --
7: TYPE t_form_template IS RECORD
8: (form_template_id hr_form_templates_b.form_template_id%TYPE
9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE
13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE

Line 10: ,form_id hr_form_templates_b.form_id%TYPE

6: --
7: TYPE t_form_template IS RECORD
8: (form_template_id hr_form_templates_b.form_template_id%TYPE
9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE
13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE
14: ,help_target hr_form_properties.help_target%TYPE

Line 11: ,template_name hr_form_templates_b.template_name%TYPE

7: TYPE t_form_template IS RECORD
8: (form_template_id hr_form_templates_b.form_template_id%TYPE
9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE
13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE
14: ,help_target hr_form_properties.help_target%TYPE
15: ,information_category hr_form_properties.information_category%TYPE

Line 12: ,legislation_code hr_form_templates_b.legislation_code%TYPE

8: (form_template_id hr_form_templates_b.form_template_id%TYPE
9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE
13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE
14: ,help_target hr_form_properties.help_target%TYPE
15: ,information_category hr_form_properties.information_category%TYPE
16: ,information1 hr_form_properties.information1%TYPE

Line 13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE

9: ,application_id hr_form_templates_b.application_id%TYPE
10: ,form_id hr_form_templates_b.form_id%TYPE
11: ,template_name hr_form_templates_b.template_name%TYPE
12: ,legislation_code hr_form_templates_b.legislation_code%TYPE
13: ,enabled_flag hr_form_templates_b.enabled_flag%TYPE
14: ,help_target hr_form_properties.help_target%TYPE
15: ,information_category hr_form_properties.information_category%TYPE
16: ,information1 hr_form_properties.information1%TYPE
17: ,information2 hr_form_properties.information2%TYPE

Line 74: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE

70: --
71: -- {End of Comments}
72: -- -----------------------------------------------------------------------------
73: FUNCTION form_template
74: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE
75: )
76: RETURN t_form_template;
77: --
78: -- -----------------------------------------------------------------------------

Line 109: ,p_template_name IN hr_form_templates_b.template_name%TYPE

105: -- -----------------------------------------------------------------------------
106: FUNCTION form_template
107: (p_application_id IN fnd_application.application_id%TYPE
108: ,p_form_id IN fnd_form.form_id%TYPE
109: ,p_template_name IN hr_form_templates_b.template_name%TYPE
110: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE
111: )
112: RETURN t_form_template;
113: --

Line 110: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE

106: FUNCTION form_template
107: (p_application_id IN fnd_application.application_id%TYPE
108: ,p_form_id IN fnd_form.form_id%TYPE
109: ,p_template_name IN hr_form_templates_b.template_name%TYPE
110: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE
111: )
112: RETURN t_form_template;
113: --
114: -- -----------------------------------------------------------------------------

Line 143: ,p_template_name IN hr_form_templates_b.template_name%TYPE

139: -- {End of Comments}
140: -- -----------------------------------------------------------------------------
141: FUNCTION form_template
142: (p_function_name IN fnd_form_functions.function_name%TYPE
143: ,p_template_name IN hr_form_templates_b.template_name%TYPE
144: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE
145: )
146: RETURN t_form_template;
147: --

Line 144: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE

140: -- -----------------------------------------------------------------------------
141: FUNCTION form_template
142: (p_function_name IN fnd_form_functions.function_name%TYPE
143: ,p_template_name IN hr_form_templates_b.template_name%TYPE
144: ,p_legislation_code IN hr_form_templates_b.legislation_code%TYPE
145: )
146: RETURN t_form_template;
147: --
148: -- -----------------------------------------------------------------------------

Line 174: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE

170: --
171: -- {End of Comments}
172: -- -----------------------------------------------------------------------------
173: FUNCTION application_id
174: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE
175: )
176: RETURN hr_form_templates_b.application_id%TYPE;
177: --
178: -- -----------------------------------------------------------------------------

Line 176: RETURN hr_form_templates_b.application_id%TYPE;

172: -- -----------------------------------------------------------------------------
173: FUNCTION application_id
174: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE
175: )
176: RETURN hr_form_templates_b.application_id%TYPE;
177: --
178: -- -----------------------------------------------------------------------------
179: -- |--------------------------------< form_id >--------------------------------|
180: -- -----------------------------------------------------------------------------

Line 204: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE

200: --
201: -- {End of Comments}
202: -- -----------------------------------------------------------------------------
203: FUNCTION form_id
204: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE
205: )
206: RETURN hr_form_templates_b.form_id%TYPE;
207: --
208: FUNCTION date_format_mask

Line 206: RETURN hr_form_templates_b.form_id%TYPE;

202: -- -----------------------------------------------------------------------------
203: FUNCTION form_id
204: (p_form_template_id IN hr_form_templates_b.form_template_id%TYPE
205: )
206: RETURN hr_form_templates_b.form_id%TYPE;
207: --
208: FUNCTION date_format_mask
209: RETURN VARCHAR2;
210: --