DBA Data[Home] [Help]

PACKAGE: APPS.HXC_TEMPLATE_SUMMARY_PKG

Source


1 PACKAGE HXC_TEMPLATE_SUMMARY_PKG AS
2 /* $Header: hxctempsumpkg.pkh 120.0 2005/05/29 06:23:14 appldev noship $ */
3 
4 PROCEDURE INSERT_SUMMARY_ROW
5 		(p_template_id in hxc_time_building_blocks.time_building_block_id%type,
6 		 p_template_ovn in hxc_time_building_blocks.OBJECT_VERSION_NUMBER%type,
7 		 p_template_name in hxc_template_summary.TEMPLATE_NAME%type,
8 		 p_description in hxc_template_summary.DESCRIPTION%type,
9 		 p_template_type in hxc_template_summary.TEMPLATE_TYPE%type,
10 		 p_layout_id in hxc_template_summary.LAYOUT_ID%type,
11 		 p_recurring_period_id in hxc_template_summary.RECURRING_PERIOD_ID%type,
12 		 p_business_group_id in hxc_template_summary.BUSINESS_GROUP_ID%type,
13 		 p_resource_id in hxc_template_summary.RESOURCE_ID%type
14 		);
15 
16 PROCEDURE UPDATE_SUMMARY_ROW(p_template_id in hxc_time_building_blocks.time_building_block_id%type);
17 
18 PROCEDURE DELETE_SUMMARY_ROW(p_template_id in hxc_time_building_blocks.time_building_block_id%type);
19 
20 END HXC_TEMPLATE_SUMMARY_PKG;