DBA Data[Home] [Help]

PACKAGE: APPS.OTA_OFF_UPD

Source


1 PACKAGE OTA_OFF_UPD as
2 /* $Header: otoffrhi.pkh 120.1 2007/02/06 15:24:40 vkkolla noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |----------------------------------< upd >---------------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --   This procedure is the record interface for the update
11 --   process for the specified entity. The role of this process is
12 --   to update a fully validated row for the HR schema passing back
13 --   to the calling process, any system generated values (e.g.
14 --   object version number attribute). This process is the main
15 --   backbone of the upd business process. The processing of this
16 --   procedure is as follows:
17 --   1) The row to be updated is locked and selected into the record
18 --      structure g_old_rec.
19 --   2) Because on update parameters which are not part of the update do not
20 --      have to be defaulted, we need to build up the updated row by
21 --      converting any system defaulted parameters to their corresponding
22 --      value.
23 --   3) The controlling validation process update_validate is then executed
24 --      which will execute all private and public validation business rule
25 --      processes.
26 --   4) The pre_update process is then executed which enables any
27 --      logic to be processed before the update dml process is executed.
28 --   5) The update_dml process will physical perform the update dml into the
29 --      specified entity.
30 --   6) The post_update process is then executed which enables any
31 --      logic to be processed after the update dml process.
32 --
33 -- Prerequisites:
34 --   The main parameters to the business process have to be in the record
35 --   format.
36 --
37 -- In Parameters:
38 --
39 -- Post Success:
40 --   The specified row will be fully validated and updated for the specified
41 --   entity without being committed.
42 --
43 -- Post Failure:
44 --   If an error has occurred, an error message will be raised.
45 --
46 -- Developer Implementation Notes:
47 --   None.
48 --
49 -- Access Status:
50 --   Internal Development Use Only.
51 --
52 -- {End Of Comments}
53 -- ----------------------------------------------------------------------------
54 Procedure upd
55   (p_effective_date               in date
56   ,p_rec                          in out nocopy ota_off_shd.g_rec_type
57   ,p_name                         in varchar2
58   );
59 --
60 -- ----------------------------------------------------------------------------
61 -- |---------------------------------< upd >----------------------------------|
62 -- ----------------------------------------------------------------------------
63 -- {Start Of Comments}
64 --
65 -- Description:
66 --   This procedure is the attribute interface for the update
67 --   process for the specified entity and is the outermost layer. The role
68 --   of this process is to update a fully validated row into the HR schema
69 --   passing back to the calling process, any system generated values
70 --   (e.g. object version number attributes). The processing of this
71 --   procedure is as follows:
72 --   1) The attributes are converted into a local record structure by
73 --      calling the convert_args function.
74 --   2) After the conversion has taken place, the corresponding record upd
75 --      interface process is executed.
76 --   3) OUT parameters are then set to their corresponding record attributes.
77 --
78 -- Prerequisites:
79 --
80 -- In Parameters:
81 --
82 -- Post Success:
83 --   A fully validated row will be updated for the specified entity
84 --   without being committed.
85 --
86 -- Post Failure:
87 --   If an error has occurred, an error message will be raised.
88 --
89 -- Developer Implementation Notes:
90 --   None.
91 --
92 -- Access Status:
93 --   Internal Development Use Only.
94 --
95 -- {End Of Comments}
96 -- ----------------------------------------------------------------------------
97 Procedure upd
98   (p_effective_date               in     date
99   ,p_offering_id                  in     number
100   ,p_object_version_number        in out nocopy number
101   ,p_business_group_id            in     number    default hr_api.g_number
102   ,p_name                         in     varchar2  default hr_api.g_varchar2
103   ,p_start_date                   in     date      default hr_api.g_date
104   ,p_activity_version_id          in     number    default hr_api.g_number
105   ,p_end_date                     in     date      default hr_api.g_date
106   ,p_owner_id                     in     number    default hr_api.g_number
107   ,p_delivery_mode_id             in     number    default hr_api.g_number
108   ,p_language_id                  in     number    default hr_api.g_number
109   ,p_duration                     in     number    default hr_api.g_number
110   ,p_duration_units               in     varchar2  default hr_api.g_varchar2
111   ,p_learning_object_id           in     number    default hr_api.g_number
112   ,p_player_toolbar_flag          in     varchar2  default hr_api.g_varchar2
113   ,p_player_toolbar_bitset        in     number    default hr_api.g_number
114   ,p_player_new_window_flag       in     varchar2  default hr_api.g_varchar2
115   ,p_maximum_attendees            in     number    default hr_api.g_number
116   ,p_maximum_internal_attendees   in     number    default hr_api.g_number
117   ,p_minimum_attendees            in     number    default hr_api.g_number
118   ,p_actual_cost                  in     number    default hr_api.g_number
119   ,p_budget_cost                  in     number    default hr_api.g_number
120   ,p_budget_currency_code         in     varchar2  default hr_api.g_varchar2
121   ,p_price_basis                  in     varchar2  default hr_api.g_varchar2
122   ,p_currency_code                in     varchar2  default hr_api.g_varchar2
123   ,p_standard_price               in     number    default hr_api.g_number
124   ,p_attribute_category           in     varchar2  default hr_api.g_varchar2
125   ,p_attribute1                   in     varchar2  default hr_api.g_varchar2
126   ,p_attribute2                   in     varchar2  default hr_api.g_varchar2
127   ,p_attribute3                   in     varchar2  default hr_api.g_varchar2
128   ,p_attribute4                   in     varchar2  default hr_api.g_varchar2
129   ,p_attribute5                   in     varchar2  default hr_api.g_varchar2
130   ,p_attribute6                   in     varchar2  default hr_api.g_varchar2
131   ,p_attribute7                   in     varchar2  default hr_api.g_varchar2
132   ,p_attribute8                   in     varchar2  default hr_api.g_varchar2
133   ,p_attribute9                   in     varchar2  default hr_api.g_varchar2
134   ,p_attribute10                  in     varchar2  default hr_api.g_varchar2
135   ,p_attribute11                  in     varchar2  default hr_api.g_varchar2
136   ,p_attribute12                  in     varchar2  default hr_api.g_varchar2
137   ,p_attribute13                  in     varchar2  default hr_api.g_varchar2
138   ,p_attribute14                  in     varchar2  default hr_api.g_varchar2
139   ,p_attribute15                  in     varchar2  default hr_api.g_varchar2
140   ,p_attribute16                  in     varchar2  default hr_api.g_varchar2
141   ,p_attribute17                  in     varchar2  default hr_api.g_varchar2
142   ,p_attribute18                  in     varchar2  default hr_api.g_varchar2
143   ,p_attribute19                  in     varchar2  default hr_api.g_varchar2
144   ,p_attribute20                  in     varchar2  default hr_api.g_varchar2
145   ,p_data_source                  in     varchar2  default hr_api.g_varchar2
146   ,p_vendor_id                    in     number    default hr_api.g_number
147   ,p_competency_update_level      in     varchar2  default hr_api.g_varchar2
148   ,p_language_code                in     varchar2  default hr_api.g_varchar2  -- 2733966
149   );
150 --
151 --
152 -- ----------------------------------------------------------------------------
153 -- |---------------------------------< update_evt_when_course_change >----------------------------------|
154 -- ----------------------------------------------------------------------------
155 
156 Procedure update_evt_when_course_change
157   (
158    p_offering_id  in  number,
159    p_activity_version_id in number
160   );
161 end ota_off_upd;