DBA Data[Home] [Help]

PACKAGE: APPS.PA_CLIENT_EXTN_ASSET_CREATION

Source


1 PACKAGE PA_CLIENT_EXTN_ASSET_CREATION AUTHID CURRENT_USER AS
2 --$Header: PACCXACS.pls 120.2 2006/07/25 20:41:46 skannoji noship $
3 /*#
4  * You can use this extension to create project assets (capital assets and retirement adjustment assets) and asset assignment
5  * automatically prior to the creation of the asset lines based on the transaction data (such as inventory issues and supplier
6  * invoices) entered for the data.
7  * @rep:scope public
8  * @rep:product PA
9  * @rep:lifecycle active
10  * @rep:displayname Asset Lines Processing Extension
11  * @rep:compatibility S
12  * @rep:category BUSINESS_ENTITY PA_PROJECT
13  * @rep:category BUSINESS_ENTITY PA_CAPITAL_ASSET
14  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
15 */
16 
17 /*#
18  * You can use this procedure to create project assets prior to the creation of asset lines, based on transaction data.
19  * @param p_project_id The Identifier of the project
20  * @rep:paraminfo {@rep:required}
21  * @param p_asset_date_through Date Placed in Service Through.runtime parameter for the PRC Generate Asset Lines Process
22  * @rep:paraminfo {@rep:required}
23  * @param p_pa_date_through PA Through Date runtime parameter for the PRC Generate Asset Lines Process. The last day of the PA period through which you want to include costs
24  * @param p_capital_event_id Runtime parameter Capital Event Number for the PRC Generate Asset Lines Process. If a value is supplied, only assets and costs associated with a single capital event are processed
25  * @rep:paraminfo {@rep:required}
26  * @param x_return_status API standard: return status of the API (S = success, F = failure, U = unexpected error)
27  * @rep:paraminfo {@rep:required}
28  * @param x_msg_data Error message text
29  * @rep:paraminfo {@rep:required}
30  * @rep:scope public
31  * @rep:lifecycle active
32  * @rep:displayname Create Project Assets
33  * @rep:compatibility S
34 */
35 PROCEDURE CREATE_PROJECT_ASSETS(p_project_id            IN      NUMBER,
36                                 p_asset_date_through    IN      DATE,
37                                 p_pa_date_through       IN      DATE DEFAULT NULL,
38                                 p_capital_event_id      IN      NUMBER DEFAULT NULL,
39                                 x_return_status    OUT NOCOPY VARCHAR2,
40                                 x_msg_data         OUT NOCOPY VARCHAR2);
41 
42 END;