DBA Data[Home] [Help]

APPS.HXC_TIMECARD_PROPERTIES dependencies on MO_GLOBAL

Line 612: FUNCTION setup_mo_global_params ( p_resource_id in number) return number is

608: end if;
609: END get_assignment_information;
610:
611:
612: FUNCTION setup_mo_global_params ( p_resource_id in number) return number is
613: l_operating_unit_id NUMBER(15);
614: BEGIN
615:
616: -- Derive the operating unit for the resource

Line 633: mo_global.init('HXC');

629: -- now set the operating unit context
630:
631: -- ONLY CALL THIS FOR RELEASE 12
632:
633: mo_global.init('HXC');
634:
635: mo_global.set_policy_context ( 'S', l_operating_unit_id );
636:
637: return l_operating_unit_id;

Line 635: mo_global.set_policy_context ( 'S', l_operating_unit_id );

631: -- ONLY CALL THIS FOR RELEASE 12
632:
633: mo_global.init('HXC');
634:
635: mo_global.set_policy_context ( 'S', l_operating_unit_id );
636:
637: return l_operating_unit_id;
638:
639: END setup_mo_global_params;

Line 639: END setup_mo_global_params;

635: mo_global.set_policy_context ( 'S', l_operating_unit_id );
636:
637: return l_operating_unit_id;
638:
639: END setup_mo_global_params;
640:
641:
642: PROCEDURE get_org_id ( p_resource_id in number
643: ,p_props in out nocopy hxc_timecard_prop_table_type) is

Line 653: l_operating_unit_id := setup_mo_global_params(p_resource_id);

649: if g_debug then
650: hr_utility.trace('Entering get org id : resource id is '||to_char(p_resource_id));
651: end if;
652:
653: l_operating_unit_id := setup_mo_global_params(p_resource_id);
654:
655: -- now add the operating unit to the timecard props record
656:
657: p_props.extend();