DBA Data[Home] [Help]

APPS.HR_TEMPLATE_DATA_GROUPS_API dependencies on HR_TEMPLATE_ITEMS_API

Line 136: hr_template_items_api.copy_template_item(

132:
133: hr_utility.set_location('At:'|| l_proc, 30);
134:
135: FOR cur_rec in cur_tmplt_item LOOP
136: hr_template_items_api.copy_template_item(
137: p_effective_date => TRUNC(p_effective_date)
138: ,p_language_code => l_language_code
139: ,p_template_item_id_from => cur_rec.template_item_id
140: ,p_form_template_id => p_form_template_id

Line 308: hr_template_items_api.create_template_item(

304:
305: hr_utility.set_location('At:'|| l_proc, 25);
306:
307: FOR cur_rec in cur_form_item LOOP
308: hr_template_items_api.create_template_item(
309: p_effective_date => TRUNC(p_effective_date)
310: ,p_form_template_id => p_form_template_id
311: ,p_form_item_id => cur_rec.form_item_id
312: ,p_template_item_id => l_template_item_id

Line 477: hr_template_items_api.delete_template_item(

473:
474: hr_utility.set_location('At:'|| l_proc, 25);
475:
476: FOR cur_rec in cur_tmplt_item LOOP
477: hr_template_items_api.delete_template_item(
478: p_template_item_id => cur_rec.template_item_id
479: ,p_object_version_number => cur_rec.object_version_number);
480: END LOOP;
481: