DBA Data[Home] [Help]

APPS.HXC_TIMECARD_SUMMARY_API dependencies on HXC_TC_AP_LINKS_PKG

Line 78: hxc_tc_ap_links_pkg.remove_timecard_links

74:
75: -- 1. Remove all the links between the timecard and the application
76: -- periods
77:
78: hxc_tc_ap_links_pkg.remove_timecard_links
79: (p_timecard_id => p_timecard_id);
80:
81:
82: open c_get_item_key(p_timecard_id);

Line 172: hxc_tc_ap_links_pkg.remove_timecard_links

168:
169: -- 1. Remove all the links between the timecard and the application
170: -- periods
171:
172: hxc_tc_ap_links_pkg.remove_timecard_links
173: (p_timecard_id => p_timecard_id);
174:
175: open c_get_item_key(p_timecard_id);
176: fetch c_get_item_key into l_item_key;

Line 289: hxc_tc_ap_links_pkg.create_timecard_links

285: -- 4. Create the link information if the
286: -- mode is migration
287: --
288: if(p_mode = hxc_timecard_summary_pkg.c_migration_mode) then
289: hxc_tc_ap_links_pkg.create_timecard_links
290: (p_timecard_id => p_blocks(l_timecard_index).time_building_block_id);
291: end if;
292: End timecard_deposit;
293: