DBA Data[Home] [Help]

PACKAGE: APPS.FA_CREATE_GROUP_ASSET_PKG

Source


1 package FA_CREATE_GROUP_ASSET_PKG as
2   /* $Header: FACGRPAS.pls 120.3 2005/09/01 11:00:55 skchawla noship $ */
3 
4   -- Author  : SKCHAWLA
5   -- Created : 6/20/2005 2:32:23 AM
6   -- Purpose : Package to create the group assets using mass additions lines
7 
8   -- Public type declarations
9   type group_asset_rec_type is record(
10     asset_id         number,
11     mass_addition_id number,
12     rec_mode         varchar2(40),
13     book_type_code   varchar2(30),
14     group_asset_id   number);
15   -- Public constant declarations
16 
17   -- Public variable declarations
18 
19   -- Public function and procedure declarations
20   function create_group_asset(px_group_asset_rec IN out NOCOPY group_asset_rec_type,
21                               p_log_level_rec    IN FA_API_TYPES.log_level_rec_type default null)
22     return boolean;
23 
24 end FA_CREATE_GROUP_ASSET_PKG;