DBA Data[Home] [Help]

PACKAGE: APPS.PER_SEC_PROFILE_ASG_SWI

Source


1 Package per_sec_profile_asg_swi AUTHID CURRENT_USER As
2 /* $Header: peaspswi.pkh 115.0 2003/09/15 23:16 vkonda noship $ */
3 
4 -- ----------------------------------------------------------------------------
5 -- |----------------------< create_security_profile_asg >---------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start of comments}
8 --
9 -- Description:
10 --  This procedure is the self-service wrapper procedure to the following
11 --  API: per_sec_profile_asg_api.create_security_profile_asg
12 --
13 -- Pre-requisites
14 --  All 'IN' parameters to this procedure have been appropriately derived.
15 --
16 -- Post Success:
17 --  p_return_status will return value indicating success.
18 --
19 -- Post Failure:
20 --  p_return_status will return value indication failure.
21 --
22 -- Access Status:
23 --  Internal Development use only.
24 --
25 -- {End of comments}
26 -- ----------------------------------------------------------------------------
27 PROCEDURE create_security_profile_asg
28   (p_validate                     in     number    default hr_api.g_false_num
29   ,p_sec_profile_assignment_id       out nocopy number
30   ,p_user_id                      in     number
31   ,p_security_group_id            in     number
32   ,p_business_group_id            in     number
33   ,p_security_profile_id          in     number
34   ,p_responsibility_id            in     number
35   ,p_responsibility_application_i in     number
36   ,p_start_date                   in     date
37   ,p_end_date                     in     date      default null
38   ,p_object_version_number           out nocopy number
39   ,p_return_status                   out nocopy varchar2
40   );
41 
42 -- ----------------------------------------------------------------------------
43 -- |----------------------< update_security_profile_asg >---------------------|
44 -- ----------------------------------------------------------------------------
45 -- {Start of comments}
46 --
47 -- Description:
48 --  This procedure is the self-service wrapper procedure to the following
49 --  API: per_sec_profile_asg_api.update_security_profile_asg
50 --
51 -- Pre-requisites
52 --  All 'IN' parameters to this procedure have been appropriately derived.
53 --
54 -- Post Success:
55 --  p_return_status will return value indicating success.
56 --
57 -- Post Failure:
58 --  p_return_status will return value indication failure.
59 --
60 -- Access Status:
61 --  Internal Development use only.
62 --
63 -- {End of comments}
64 -- ----------------------------------------------------------------------------
65 PROCEDURE update_security_profile_asg
66   (p_validate                     in     number    default hr_api.g_false_num
67   ,p_sec_profile_assignment_id    in     number
68   ,p_user_id                      in     number
69   ,p_security_group_id            in     number
70   ,p_business_group_id            in     number
71   ,p_security_profile_id          in     number
72   ,p_responsibility_id            in     number
73   ,p_responsibility_application_i in     number
74   ,p_start_date                   in     date
75   ,p_end_date                     in     date
76   ,p_object_version_number        in out nocopy number
77   ,p_return_status                   out nocopy varchar2
78   );
79 end per_sec_profile_asg_swi;