DBA Data[Home] [Help]

PACKAGE: APPS.FA_INV_XFR_PUB

Source


1 PACKAGE FA_INV_XFR_PUB as
2 /* $Header: FAPIXFRS.pls 120.4 2004/12/01 14:05:42 vmarella noship $   */
3 /*#
4  * Creates asset transfers.
5  * @rep:scope public
6  * @rep:product FA
7  * @rep:lifecycle active
8  * @rep:displayname Invoice Transfer API
9  * @rep:compatibility S
10  * @rep:category BUSINESS_ENTITY FA_ASSET
11  */
12 
13 
14 
15 /*#
16  * Transfer an invoice between two assets in the same book.
17  * @param p_api_version The version of the API
18  * @param p_init_msg_list The initialize message list flag
19  * @param p_commit The Commit flag
20  * @param p_validation_level The validation level
21  * @param p_calling_fn The calling function
22  * @param x_return_status The return status
23  * @param x_msg_count The message count
24  * @param x_msg_data The message data
25  * @param px_src_trans_rec The source transaction record
26  * @param px_src_asset_hdr_rec The source asset header record
27  * @param px_dest_trans_rec The destination transaction record
28  * @param px_dest_asset_hdr_rec destination asset header record
29  * @param p_inv_tbl table of invoices to transfer
30  * @rep:scope public
31  * @rep:lifecycle active
32  * @rep:displayname Transfer Asset Source Line
33  * @rep:compatibility S
34  */
35 PROCEDURE do_transfer
36    (p_api_version             IN     NUMBER,
37     p_init_msg_list           IN     VARCHAR2 := FND_API.G_FALSE,
38     p_commit                  IN     VARCHAR2 := FND_API.G_FALSE,
39     p_validation_level        IN     NUMBER   := FND_API.G_VALID_LEVEL_FULL,
40     p_calling_fn              IN     VARCHAR2 := NULL,
41     x_return_status              OUT NOCOPY VARCHAR2,
42     x_msg_count                  OUT NOCOPY NUMBER,
43     x_msg_data                   OUT NOCOPY VARCHAR2,
44     px_src_trans_rec          IN OUT NOCOPY FA_API_TYPES.trans_rec_type,
45     px_src_asset_hdr_rec      IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
46     px_dest_trans_rec         IN OUT NOCOPY FA_API_TYPES.trans_rec_type,
47     px_dest_asset_hdr_rec     IN OUT NOCOPY FA_API_TYPES.asset_hdr_rec_type,
48     p_inv_tbl                 IN     FA_API_TYPES.inv_tbl_type
49    );
50 
51 END FA_INV_XFR_PUB;