DBA Data[Home] [Help]

PACKAGE: APPS.PSP_WF_CUSTOM

Source


1 PACKAGE psp_wf_custom AUTHID CURRENT_USER AS
2 /* $Header: PSPWFCTS.pls 115.5 2002/11/18 13:24:17 ddubey ship $ */
3 
4 /*************************************************************************
5 **Procedure EFFORT_SELECT_CERTIFIER returns the certifier's person_id   **
6 **for the given employee. It is called from                             **
7 **PSP_WF_EFF_PKG.SELECT_CERTIFIER.                                      **
8 **************************************************************************/
9 PROCEDURE effort_select_certifier(emp_id 	 IN   NUMBER,
10                                   certifier_id   OUT NOCOPY  NUMBER);
11 
12 /*************************************************************************
13 **Procedure EFFORT_SELECT_APPROVER returns the approver's person_id for **
14 **the given employee. It is called from PSP_WF_EFF_PKG.SELECT_APPROVER. **
15 **************************************************************************/
16 PROCEDURE effort_select_approver(emp_id	        IN   NUMBER,
17 			         approver_id	OUT NOCOPY  NUMBER);
18 
19 END psp_wf_custom;
20