DBA Data[Home] [Help]

PACKAGE: APPS.CSE_FA_TXN_PKG

Source


1 PACKAGE cse_fa_txn_pkg AUTHID CURRENT_USER AS
2 /* $Header: CSEASTXS.pls 120.4 2006/06/20 21:56:31 brmanesh noship $   */
3   g_pkg_name constant varchar2(30) := 'cse_fa_txn_pkg';
4 
5 
6   PROCEDURE asset_retirement(
7     p_instance_id           IN     NUMBER,
8     p_book_type_code        IN     VARCHAR2,
9     p_asset_id              IN     NUMBER,
10     p_units                 IN     NUMBER,
11     p_trans_date            IN     DATE,
12     p_trans_by              IN     NUMBER,
13     px_txn_rec              IN OUT NOCOPY csi_datastructures_pub.transaction_rec,
14     x_return_status            OUT NOCOPY VARCHAR2,
15     x_error_message            OUT NOCOPY VARCHAR2);
16 
17   PROCEDURE asset_reinstatement(
18     p_retirement_id         IN     NUMBER,
19     p_book_type_code        IN     VARCHAR2,
20     p_asset_id              IN     NUMBER,
21     p_units                 IN     NUMBER,
22     p_trans_date            IN     DATE,
23     p_trans_by              IN     NUMBER,
24     x_return_status            OUT NOCOPY VARCHAR2,
25     x_error_message            OUT NOCOPY VARCHAR2);
26 
27   PROCEDURE populate_retirement_interface(
28     p_csi_txn_id            IN     number,
29     p_asset_id              IN     number,
30     p_book_type_code        IN     varchar2,
31     p_fa_location_id        IN     number,
32     p_proceeds_of_sale      IN     number,
33     p_cost_of_removal       IN     number,
34     p_retirement_units      IN     number,
35     p_retirement_date       IN     date,
36     x_return_status            OUT nocopy varchar2);
37 
38 END cse_fa_txn_pkg;