DBA Data[Home] [Help]

APPS.HXC_APP_PERIOD_SUMMARY_API dependencies on HXC_TC_AP_LINKS

Line 12: hxc_tc_ap_links_pkg.remove_app_period_links

8:
9: --
10: -- 1. Remove all the links between the app_period and the timecards
11: --
12: hxc_tc_ap_links_pkg.remove_app_period_links
13: (p_application_period_id => p_application_period_id);
14: --
15: -- 2. Remove all detail links between details and application
16: -- periods

Line 108: hxc_tc_ap_links_pkg.create_app_period_links

104: --
105: -- 3. Create the link between the application periods
106: -- and the timecards
107: --
108: hxc_tc_ap_links_pkg.create_app_period_links
109: (p_application_period_id => p_application_period_id);
110: --
111: -- 4. Links between details and application
112: -- periods made at another time.

Line 192: hxc_tc_ap_links_pkg.create_app_period_links

188: --
189: -- 3. Create the link between the application periods
190: -- and the timecards
191: --
192: hxc_tc_ap_links_pkg.create_app_period_links
193: (p_application_period_id => p_application_period_id);
194: --
195: -- 4. Links between details and application
196: -- periods made at another time.

Line 360: from hxc_tc_ap_links tal

356: AND aps.start_time <= p_stop_date
357: AND aps.stop_time >= p_start_date
358: and exists
359: (select 1
360: from hxc_tc_ap_links tal
361: where tal.application_period_id = aps.application_period_id
362: )
363: ORDER BY start_time;
364: