[Home] [Help]
1033: hrdyndbi.delete_element_type_dict (p_element_type_id);
1034: --
1035: -- We need to delete any payroll frequency rules for the element
1036: --
1037: delete from pay_ele_payroll_freq_rules
1038: where element_type_id = p_element_type_id;
1039: --
1040: -- Delete the child retro component usages.
1041: --
1048: --
1049: -- We need to remove any payroll frequency rules starting after the new end
1050: -- date
1051: --
1052: delete from pay_ele_payroll_freq_rules
1053: where element_type_id = p_element_type_id
1054: and start_date > p_session_date;
1055: --
1056: end if;