DBA Data[Home] [Help]

PACKAGE: APPS.PA_CLIENT_EXTN_CHECK_CMT

Source


1 PACKAGE PA_CLIENT_EXTN_CHECK_CMT AUTHID CURRENT_USER AS
2 /* $Header: PACECMTS.pls 120.1 2006/07/21 09:18:15 ajdas noship $*/
3 /*#
4  * When you run the PRC:Update Project Summary Amounts process,Oracle Projects checks the commitments for each project to see
5  * if changes have occurred.If any of these changes have occurred,the commitment summary are deleted and recreated.
6  * @rep:scope public
7  * @rep:product PA
8  * @rep:lifecycle active
9  * @rep:displayname Commitment Changes
10  * @rep:compatibility S
11  * @rep:category BUSINESS_ENTITY PA_PROJECT
12  * @rep:category BUSINESS_ENTITY PA_PROJ_COST
13  * @rep:category BUSINESS_ENTITY PA_PERF_REPORTING
14  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
15 */
16 
17 /* Commitments_Changed
18 	Return Y if commitments for the project have changed.
19 	Return N if commitments for the project have not changed.
20 */
21 
22 /*#
23  * This function checks if new commitments have been added or not,a commitment has been fully or partially converted to cost and
24  * the status of a commitment has changed from unapproved to approved, if commitments have changed then the function returns a value of
25  * Y otherwise returns N.
26  * @return Returns the flag indicating if a commitment has changed from unapproved to approved.
27  * @param p_ProjectID The identifier for the project.
28  * @rep:paraminfo {@rep:required}
29  * @rep:scope public
30  * @rep:lifecycle active
31  * @rep:displayname Commitments Changed
32  * @rep:compatibility S
33 */
34 FUNCTION COMMITMENTS_CHANGED ( p_ProjectID IN NUMBER )
35 	RETURN VARCHAR2 ;
36 Pragma Restrict_References ( Commitments_Changed, WNDS, WNPS );
37 
38 END PA_CLIENT_EXTN_CHECK_CMT;