DBA Data[Home] [Help]

PACKAGE: APPS.AS_CATALOG_MIGRATION

Source


1 PACKAGE AS_CATALOG_MIGRATION AUTHID CURRENT_USER as
2 /* $Header: asxmcats.pls 115.2 2003/12/03 12:49:47 gbatra noship $ */
3 
4 /*
5 This procedure creates new categories corresponding to interest types/codes
6 if required and then map these categories to interest types/codes. It will also
7 associate items to these newly created categories based on the old association
8 between items and interest types/codes
9 This will be called by concurrent program 'Product Catalog Mapping'
10 */
11 PROCEDURE Migrate_Categories (
12      ERRBUF     OUT NOCOPY    VARCHAR2,
13      RETCODE    OUT NOCOPY    VARCHAR2,
14      p_Debug_Flag   IN        VARCHAR2 Default 'N'
15     );
16 
17 
18 END AS_CATALOG_MIGRATION;
19