DBA Data[Home] [Help]

PACKAGE: APPS.PJI_PJP_SUM_CUST

Source


1 package PJI_PJP_SUM_CUST AUTHID CURRENT_USER as
2   /* $Header: PJISC01S.pls 120.3 2006/07/27 13:35:34 ajdas noship $ */
3 /*#
4  * This package contains the client extensions for project performance reporting.
5  * @rep:scope public
6  * @rep:product PA
7  * @rep:lifecycle active
8  * @rep:displayname Custom Measures Client Extension
9  * @rep:compatibility S
10  * @rep:category BUSINESS_ENTITY PA_PROJECT
11  * @rep:category BUSINESS_ENTITY PA_PERF_REPORTING
12  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
13 */
14   -- -----------------------------------------------------
15   -- procedure PJP_CUSTOM_FPR_API
16   -- -----------------------------------------------------
17  /*#
18   * This procedure is used to implement custom measures in the Financial Planning Reporting
19   * Lines Fact table (PJI_FP_XBS_ACCUM_F). The custom measures are used by the summarization
20   * program (PRC: Update Project Performance Data and PRC: Load Project Performance Data)
21   * to populate the custom measure columns (COLUMN1 through COLUMN15).
22   * @param p_worker_id  Identifier of the worker involved in the summarization program
23   * @rep:paraminfo {@rep:required}
24   * @rep:scope public
25   * @rep:lifecycle active
26   * @rep:displayname Customize Financial Planning Measures
27   * @rep:compatibility S
28 */
29   procedure PJP_CUSTOM_FPR_API (p_worker_id in number);
30 
31   -- -----------------------------------------------------
32   -- procedure PJP_CUSTOM_ACR_API
33   -- -----------------------------------------------------
34 /*#
35  * This procedure is used to implement custom measures in the Activities Reporting Lines
36  * Fact table (PJI_AC_XBS_ACCUM_F). The customer measures are used by the summarization
37  * programs (PRC: Update Project Performance Data and PRC: Load Project Performance Data)
38  * to populate the custom measure columns (COLUMN1 through COLUMN15).
39  * @param p_worker_id  Identifier of the worker involved in the summarization program
40  * @rep:paraminfo {@rep:required}
41  * @rep:scope public
42  * @rep:lifecycle active
43  * @rep:displayname Customize Activity Measures
44  * @rep:compatibility S
45 */
46   procedure PJP_CUSTOM_ACR_API (p_worker_id in number);
47 
48 end PJI_PJP_SUM_CUST;