DBA Data[Home] [Help]

PACKAGE: APPS.PQH_DE_VLDDEF_API

Source


1 Package PQH_DE_VLDDEF_API  as
2 /* $Header: pqdefapi.pkh 120.0 2005/05/29 01:46:34 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< <PQH_DE_VLDDEF_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_Defn
33   (p_validate                      in  boolean  default false
34   ,p_effective_date                in  date
35   ,p_business_group_id             in  number
36   ,p_VALIDATION_NAME               In  Varchar2
37   ,p_EMPLOYMENT_TYPE               In  Varchar2
38   ,p_REMUNERATION_REGULATION       In  Varchar2
39   ,p_WRKPLC_VLDTN_ID               out nocopy number
40   ,p_object_version_number         out nocopy number);
41 
42 procedure Update_Vldtn_Defn
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_VALIDATION_NAME               In     Varchar2 Default hr_api.g_Varchar2
47   ,p_EMPLOYMENT_TYPE               In     Varchar2 Default hr_api.g_Varchar2
48   ,p_REMUNERATION_REGULATION       In     Varchar2 Default hr_api.g_Varchar2
49   ,p_WRKPLC_VLDTN_ID               in     number
50   ,p_object_version_number         In out nocopy number);
51 
52 Procedure Delete_Vldtn_Defn
53   (p_validate                      in     boolean  default false
54   ,p_WRKPLC_VLDTN_ID               In     Number
55   ,p_object_version_number         In     number);
56 --
57 end  PQH_DE_VLDDEF_API;