DBA Data[Home] [Help]

APPS.HR_FORM_TEMPLATES_API dependencies on HR_TEMPLATE_WINDOWS

Line 189: FROM hr_template_windows twn

185:
186: CURSOR cur_tmplt_win
187: IS
188: SELECT twn.template_window_id
189: FROM hr_template_windows twn
190: WHERE twn.form_template_id = p_form_template_id_from;
191:
192: CURSOR cur_tmplt_item
193: IS

Line 453: hr_template_windows_api.copy_template_window(

449:
450: hr_utility.set_location('At:'|| l_proc, 60);
451:
452: FOR cur_rec in cur_tmplt_win LOOP
453: hr_template_windows_api.copy_template_window(
454: p_effective_date => TRUNC(p_effective_date)
455: ,p_language_code => l_language_code
456: ,p_template_window_id_from => cur_rec.template_window_id
457: ,p_form_template_id => l_form_template_id_to

Line 1037: FROM hr_template_windows

1033: CURSOR cur_del_win
1034: IS
1035: SELECT template_window_id
1036: ,object_version_number
1037: FROM hr_template_windows
1038: WHERE form_template_id = p_form_template_id;
1039:
1040: CURSOR cur_del_data_group
1041: IS

Line 1122: hr_template_windows_api.delete_template_window(

1118:
1119: hr_utility.set_location('At:'|| l_proc, 60);
1120:
1121: FOR cur_rec in cur_del_win LOOP
1122: hr_template_windows_api.delete_template_window(
1123: p_template_window_id => cur_rec.template_window_id
1124: ,p_object_version_number => cur_rec.object_version_number
1125: ,p_delete_children_flag => p_delete_children_flag);
1126: END LOOP;