DBA Data[Home] [Help]

PACKAGE: APPS.PA_CLIENT_EXTN_CIP_ACCT_OVR

Source


1 PACKAGE PA_CLIENT_EXTN_CIP_ACCT_OVR AUTHID CURRENT_USER AS
2 --$Header: PACCXCOS.pls 120.1 2006/07/25 20:42:09 skannoji noship $
3 /*#
4  * This extension enables you to override the CIP account associated with the asset line to specify a different account for
5  * posting CIP clearing amounts.
6  * @rep:scope public
7  * @rep:product PA
8  * @rep:lifecycle active
9  * @rep:displayname CIP Account Override Extension
10  * @rep:compatibility S
11  * @rep:category BUSINESS_ENTITY PA_PROJECT
12  * @rep:category BUSINESS_ENTITY PA_CAPITAL_ASSET
13  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
14 */
15 
16 /*#
17  * You can use this procedure to override the CIP account associated with the asset line and specify a different account for
18  * posting CIP clearing amounts. Oracle Projects calls this procedure when you submit the PRC: Generate Asset Lines Process.
19  * @return Returns the override CIP account code
20  * @param p_cdl_cip_ccid  The CIP account defined on the cost distribution line
21  * @rep:paraminfo {@rep:required}
22  * @param p_expenditure_item_id  The identifier of the expenditure item that generated the cost distribution line
23  * @rep:paraminfo {@rep:required}
24  * @param p_cdl_line_number Cost distribution line number
25  * @rep:paraminfo {@rep:required}
26  * @rep:scope public
27  * @rep:lifecycle active
28  * @rep:displayname CIP Account Override
29  * @rep:compatibility S
30 */
31 FUNCTION CIP_ACCT_OVERRIDE(p_cdl_cip_ccid           IN      NUMBER,
32                            p_expenditure_item_id    IN      NUMBER,
33                            p_cdl_line_number        IN      NUMBER) RETURN NUMBER;
34 
35 END;