DBA Data[Home] [Help]

PACKAGE: APPS.PQH_DE_VLDJOBFTR_API

Source


1 Package PQH_DE_VLDJOBFTR_API  as
2 /* $Header: pqftrapi.pkh 120.0 2005/05/29 01:54:28 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< <PQH_DE_VLDJOBFTRS_API> >---------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 -- This API Creates the the Validation Definition for the Workplace Validation Proess
11 --
12 -- Prerequisites:
13 --
14 --
15 -- In Parameters:
16 --   Name                           Reqd Type     Description
17 --
18 --
19 -- Post Success:
20 --
21 --
22 --   Name                           Type     Description
23 --
24 -- Post Failure:
25 --
26 --
27 -- Access Status:
28 --   Public.
29 --
30 -- {End Of Comments}
31 --
32 procedure Insert_Vldtn_JObftr
33   (p_validate                      in  boolean  default false
34   ,p_effective_date                in  date
35   ,p_business_group_id             in  number
36   ,p_WRKPLC_VLDTN_OPR_JOB_ID       In  Number
37   ,P_JOB_FEATURE_CODE              In  Varchar2
38   ,P_Wrkplc_Vldtn_Opr_job_Type     In  Varchar2
39   ,P_WRKPLC_VLDTN_JObFTR_ID        out nocopy Number
40   ,p_object_version_number         out nocopy number);
41 
42 procedure Update_Vldtn_JObFtr
43   (p_validate                      in  boolean   default false
44   ,p_effective_date                in  date
45   ,p_business_group_id             in  number    Default hr_api.g_Number
46   ,P_WRKPLC_VLDTN_OPR_JOB_ID       In  Number    Default hr_api.g_Number
47   ,P_JOB_FEATURE_CODE              In  Varchar2  Default hr_api.g_Varchar2
48   ,P_Wrkplc_Vldtn_Opr_job_Type     In  Varchar2  Default hr_api.g_Varchar2
49   ,P_WRKPLC_VLDTN_Jobftr_ID        In  Number
50   ,p_object_version_number         In  out nocopy number);
51 
52 Procedure Delete_Vldtn_JobFtr
53   (p_validate                      in     boolean  default false
54   ,p_WRKPLC_VLDTN_JobFtr_Id        In     Number
55   ,p_object_version_number         In     number);
56 --
57 end  PQH_DE_VLDJOBFTR_API;