761: AS
762: cursor get_function_info ( p_item_type HR_API_TRANSACTION_STEPS.item_type%TYPE
763: ,p_item_key HR_API_TRANSACTION_STEPS.item_key%TYPE ) is
764: select fff.function_id, fff.function_name from
765: fnd_form_functions_vl fff
766: where fff.function_name = ( select iav.text_value
767: from wf_item_attribute_values iav
768: where iav.item_type = p_item_type
769: and iav.item_key = p_item_key
768: where iav.item_type = p_item_type
769: and iav.item_key = p_item_key
770: and iav.name = 'P_CALLED_FROM') ;
771:
772: l_function_name fnd_form_functions_vl.function_name%TYPE default null;
773: l_proc constant varchar2(100) := g_package || ' populate_null_values';
774: BEGIN
775: hr_utility.set_location('Entering: '|| l_proc,5);
776: If p_function_id is null then