DBA Data[Home] [Help]

PACKAGE: APPS.PQH_TXN_CAT_DOCUMENTS_API

Source


1 Package pqh_txn_cat_documents_api as
2 /* $Header: pqtcdapi.pkh 120.0 2005/05/29 02:46:11 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< create_txn_cat_document >-----------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
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 create_txn_cat_document
33   (p_validate                      in     boolean  default false
34   ,p_effective_date                in     date
35   ,p_document_id                   in     number
36   ,p_transaction_category_id       in     number
37   ,p_type_code                     in     varchar2
38   ,p_object_version_number            out nocopy   number
39   );
40 --
41 -- ----------------------------------------------------------------------------
42 -- |------------------------< update_txn_cat_document >-----------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start Of Comments}
45 --
46 -- Description:
47 --
48 --
49 -- Prerequisites:
50 --
51 --
52 -- In Parameters:
53 --   Name                           Reqd Type     Description
54 --
55 --
56 -- Post Success:
57 --
58 --
59 --   Name                           Type     Description
60 --
61 -- Post Failure:
62 --
63 --
64 -- Access Status:
65 --   Public.
66 --
67 -- {End Of Comments}
68 --
69 procedure update_txn_cat_document
70   (p_validate                      in     boolean  default false
71   ,p_effective_date                in     date
72   ,p_document_id                   in     number
73   ,p_transaction_category_id       in     number
74   ,p_type_code                     in     varchar2 default hr_api.g_varchar2
75   ,p_object_version_number         in out nocopy   number
76   );
77 --
78 -- ----------------------------------------------------------------------------
79 -- |------------------------< delete_txn_cat_document >-----------------------|
80 -- ----------------------------------------------------------------------------
81 -- {Start Of Comments}
82 --
83 -- Description:
84 --
85 --
86 -- Prerequisites:
87 --
88 --
89 -- In Parameters:
90 --   Name                           Reqd Type     Description
91 --
92 --
93 -- Post Success:
94 --
95 --
96 --   Name                           Type     Description
97 --
98 -- Post Failure:
99 --
100 --
101 -- Access Status:
102 --   Public.
103 --
104 -- {End Of Comments}
105 --
106 procedure delete_txn_cat_document
107   (p_validate                      in     boolean  default false
108   ,p_document_id                   in     number
109   ,p_transaction_category_id       in     number
110   ,p_object_version_number         in     number
111   );
112 --
113 end pqh_txn_cat_documents_api ;