DBA Data[Home] [Help]

PACKAGE: APPS.PA_CE_AR_NOTIFY_WF

Source


1 PACKAGE pa_ce_ar_notify_wf AUTHID CURRENT_USER as
2 /* $Header: PAPWPCES.pls 120.0.12010000.5 2009/10/21 10:04:05 vchilla noship $ */
3 /*#
4  * Oracle Projects provides a template package that contains a procedure that you can modify to change
5  * the logic of selecting the person, to notify, whenever a receipt is applied on an Invoice.
6  * The name of the package is pa_ce_ar_notify_wf. The name of the procedure is Select_Project_Manager.
7  * @rep:scope public
8  * @rep:product PA
9  * @rep:lifecycle active
10  * @rep:displayname Client Extension for AR Notifications.
11  * @rep:compatibility S
12  * @rep:category BUSINESS_ENTITY PA_PROJECT
13  * @rep:category BUSINESS_ENTITY PA_PAYABLE_INV_COST
14  * @rep:doccd 120pjapi.pdf See the Oracle Projects API's, Client Extensions, and Open Interfaces Reference
15 */
16 
17 /*#
18  * Procedure that can be modified to change project manager selection,
19  * @param p_project_id Identifier of the Project (Project_Id)
20  * @param p_project_manager_id Person id to be returned
21  * @rep:paraminfo {@rep:required}
22  * @param p_return_status API standard: return of the API (success >= 0/failure < 0/unexpected error < 0)
23  * @rep:paraminfo {@rep:required}
24  * @rep:scope public
25  * @rep:lifecycle active
26  * @rep:displayname Select Project Manager
27  * @rep:compatibility S
28 */
29 
30 PROCEDURE Select_Project_Manager (p_project_id          IN  NUMBER
31                                 , p_project_manager_id  OUT NOCOPY NUMBER
32                                 , p_return_status       IN OUT NOCOPY NUMBER);
33 
34 END pa_ce_ar_notify_wf;