DBA Data[Home] [Help]

PACKAGE: APPS.PA_CC_CA

Source


1 PACKAGE pa_cc_ca AUTHID CURRENT_USER AS
2 /* $Header: PAICPCAS.pls 120.5 2006/07/25 06:41:34 lveerubh noship $ */
3 /*#
4  * This extension is used for cost accrual identification.
5  * @rep:scope public
6  * @rep:product PA
7  * @rep:lifecycle active
8  * @rep:displayname Cost Accrual Identification Extension
9  * @rep:compatibility S
10  * @rep:category BUSINESS_ENTITY PA_PROJECT
11  * @rep:category BUSINESS_ENTITY PA_IC_TRANSACTION
12  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
13 */
14 
15 /*#
16  * This extension is used to identify cross charged projects that use cost accrual during revenue generation.
17  * @param p_project_id The identifier of the project
18  * @rep:paraminfo {@rep:required}
19  * @param x_cost_accrual_flag Flag identifying the cost accrual projects. Value is Y or N
20  * @rep:paraminfo {@rep:required}
21  * @rep:scope public
22  * @rep:lifecycle active
23  * @rep:displayname Identify Cost Accrual Project
24  * @rep:compatibility S
25 */
26       PROCEDURE identify_ca_project
27           (  p_project_id               IN    NUMBER,
28              x_cost_accrual_flag       OUT    NOCOPY VARCHAR2); --File.Sql.39 bug 4440895
29 
30 end pa_cc_ca;