DBA Data[Home] [Help]

PACKAGE: APPS.CTO_CUSTOM_CATEGORY_PK

Source


1 package CTO_CUSTOM_CATEGORY_PK AUTHID CURRENT_USER as
2 /* $Header: CTOCUCTS.pls 115.0 2002/10/09 23:45:38 sbhaskar noship $ */
3 
4 
5 /*---------------------------------------------------------------------------+
6     This function is used to determine if a particular category set needs
7     to be copied to the configuration item or not.
8     If the function returns
9        0, it means that the category set SHOULD NOT be copied to the config item.
10        1, it means that the category set SHOULD be copied to the config item.
11 
12 +----------------------------------------------------------------------------*/
13 
14 -- Seeded Category Sets --
15 
16 INVENTORY   		CONSTANT NUMBER := 1;
17 PURCHASING   		CONSTANT NUMBER := 2;
18 PRODUCT_FAMILY		CONSTANT NUMBER := 3;
19 SALES_AND_MARKETING   	CONSTANT NUMBER := 5;
20 CONTAINED_ITEM        	CONSTANT NUMBER := 11;
21 CONTAINER_ITEM        	CONSTANT NUMBER := 12;
22 ENTERPRISE_ASSET_MGMT   CONSTANT NUMBER := 1000000014;
23 CONTRACTS        	CONSTANT NUMBER := 1000000015;
24 
25 
26 
27 function Copy_Category(
28 	pCategory_Set_Id    in      Number,
29         pOrganization_id    in      Number)
30 Return Number;
31 
32 end CTO_CUSTOM_CATEGORY_PK;