DBA Data[Home] [Help]

PACKAGE BODY: APPS.PSP_WF_CUSTOM

Source


1 PACKAGE BODY psp_wf_custom AS
2 /* $Header: PSPWFCTB.pls 115.6 2002/11/18 13:25:03 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 **INPUT: an employee's person ID					**
9 **OUTPUT: return the certifier's person ID				**
10 **************************************************************************/
11 PROCEDURE effort_select_certifier(emp_id 	 IN   NUMBER,
12                                   certifier_id   OUT NOCOPY  NUMBER)
13 IS
14 BEGIN
15 --insert your customization code here
16 --emp_id is passed in, return the certifier's person_id for the employee
17    NULL;
18 END effort_select_certifier;
19 
20 /*************************************************************************
21 **Procedure EFFORT_SELECT_APPROVER returns the approver's person_id for **
22 **the given employee. It is called from PSP_WF_EFF_PKG.SELECT_APPROVER. **
23 **INPUT: an employe's person ID						**
24 **OUTPUT: return the approver's person ID 				**
25 **************************************************************************/
26 PROCEDURE effort_select_approver(emp_id	        IN	NUMBER,
27 			         approver_id	OUT NOCOPY	NUMBER)
28 IS
29 BEGIN
30 --insert your customization code here
31 --emp_id is passed, return the approver's person_id
32    NULL;
33 END effort_select_approver;
34 
35 
36 END psp_wf_custom;
37