DBA Data[Home] [Help]

APPS.HR_ITEM_PROPERTIES_PKG dependencies on FND_FORM

Line 9: g_form_id fnd_form.form_id%TYPE;

5: -- Global variables, added for performance improvements bug 2781560
6: --
7: g_application_id fnd_application.application_id%TYPE;
8: g_application_short_name fnd_application.application_short_name%type;
9: g_form_id fnd_form.form_id%TYPE;
10: g_form_name fnd_form.form_name%type;
11: g_form_template_id hr_form_templates_b.form_template_id%type;
12: g_template_name hr_form_templates_b.template_name%type;
13: g_legislation_code hr_form_templates_b.legislation_code%type;

Line 10: g_form_name fnd_form.form_name%type;

6: --
7: g_application_id fnd_application.application_id%TYPE;
8: g_application_short_name fnd_application.application_short_name%type;
9: g_form_id fnd_form.form_id%TYPE;
10: g_form_name fnd_form.form_name%type;
11: g_form_template_id hr_form_templates_b.form_template_id%type;
12: g_template_name hr_form_templates_b.template_name%type;
13: g_legislation_code hr_form_templates_b.legislation_code%type;
14:

Line 1320: from fnd_form

1316:
1317: if ltrim(rtrim(x_form_name)) is not null then
1318: select form_id
1319: into x_form_id
1320: from fnd_form
1321: where form_name = x_form_name
1322: and application_id = x_application_id;
1323: end if;
1324:

Line 2165: from fnd_form

2161: ELSE
2162: --identifier is different from last call or this is the first call
2163: select form_id
2164: into g_form_id --x_form_id
2165: from fnd_form
2166: where form_name = x_form_name
2167: and application_id = g_application_id; --x_application_id;
2168: --
2169: --g_form_id := x_form_id;

Line 2453: from fnd_form

2449: ELSE
2450: --identifier is different from last call or this is the first call
2451: select form_id
2452: into g_form_id --x_form_id
2453: from fnd_form
2454: where form_name = x_form_name
2455: and application_id = g_application_id; --x_application_id;
2456: --
2457: --g_form_id := x_form_id;