DBA Data[Home] [Help]

PACKAGE: APPS.IRC_ASSIGNMENT_DETAILS_SWI

Source


1 Package irc_assignment_details_swi As
2 /* $Header: iriadswi.pkh 120.0.12000000.2 2007/03/23 08:26:36 vboggava noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |-----------------------< create_assignment_details >----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: irc_assignment_details_api.create_assignment_details
11 --
12 -- Pre-requisites
13 --  All 'IN' parameters to this procedure have been appropriately derived.
14 --
15 -- Post Success:
16 --  p_return_status will return value indicating success.
17 --
18 -- Post Failure:
19 --  p_return_status will return value indication failure.
20 --
21 -- Access Status:
22 --  Internal Development use only.
23 --
24 -- {End of comments}
25 -- ----------------------------------------------------------------------------
26 PROCEDURE create_assignment_details
27   (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_assignment_id                in     number
30   ,p_attempt_id                   in     number    default null
31   ,p_assignment_details_id        in     number
32   ,p_qualified                    in     varchar2  default null
33   ,p_considered                   in     varchar2  default null
34   ,p_details_version                 out nocopy number
35   ,p_effective_start_date            out nocopy date
36   ,p_effective_end_date              out nocopy date
37   ,p_object_version_number           out nocopy number
38   ,p_return_status                   out nocopy varchar2
39   );
40 -- ----------------------------------------------------------------------------
41 -- |-----------------------< update_assignment_details >----------------------|
42 -- ----------------------------------------------------------------------------
43 -- {Start of comments}
44 --
45 -- Description:
46 --  This procedure is the self-service wrapper procedure to the following
47 --  API: irc_assignment_details_api.update_assignment_details
48 --
49 -- Pre-requisites
50 --  All 'IN' parameters to this procedure have been appropriately derived.
51 --
52 -- Post Success:
53 --  p_return_status will return value indicating success.
54 --
55 -- Post Failure:
56 --  p_return_status will return value indication failure.
57 --
58 -- Access Status:
59 --  Internal Development use only.
60 --
61 -- {End of comments}
62 -- ----------------------------------------------------------------------------
63 PROCEDURE update_assignment_details
64   (p_validate                     in     number    default hr_api.g_false_num
65   ,p_effective_date               in     date
66   ,p_datetrack_update_mode        in     varchar2
67   ,p_assignment_id                in     number    default hr_api.g_number
68   ,p_attempt_id                   in     number    default hr_api.g_number
69   ,p_qualified                    in     varchar2  default null
70   ,p_considered                   in     varchar2  default null
71   ,p_assignment_details_id        in out nocopy number
72   ,p_object_version_number        in out nocopy number
73   ,p_details_version                 out nocopy number
74   ,p_effective_start_date            out nocopy date
75   ,p_effective_end_date              out nocopy date
76   ,p_return_status                   out nocopy varchar2
77   );
78  end irc_assignment_details_swi;