DBA Data[Home] [Help]

PACKAGE: APPS.OTA_TRB_INS

Source


1 Package ota_trb_ins AUTHID CURRENT_USER as
2 /* $Header: ottrbrhi.pkh 120.3.12000000.1 2007/01/18 05:24:38 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< set_base_key_value >----------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of Comments}
7 -- Description:
8 --   This procedure is called to register the next ID value from the database
9 --   sequence.
10 --
11 -- Prerequisites:
12 --
13 -- In Parameters:
14 --   Primary Key
15 --
16 -- Post Success:
17 --
18 -- Post Failure:
19 --
20 -- Developer Implementation Notes:
21 --   None.
22 --
23 -- Access Status:
24 --   Internal Development Use Only.
25 --
26 -- {End of Comments}
27 -- ----------------------------------------------------------------------------
28 procedure set_base_key_value
29   (p_resource_booking_id  in  number);
30 --
31 -- ----------------------------------------------------------------------------
32 -- |---------------------------------< ins >----------------------------------|
33 -- ----------------------------------------------------------------------------
34 -- {Start Of Comments}
35 --
36 -- Description:
37 --   This procedure is the record interface for the insert process
38 --   for the specified entity. The role of this process is to insert a fully
39 --   validated row, into the HR schema passing back to  the calling process,
40 --   any system generated values (e.g. primary and object version number
41 --   attributes). This process is the main backbone of the ins
42 --   process. The processing of this procedure is as follows:
43 --   1) The controlling validation process insert_validate is executed
44 --      which will execute all private and public validation business rule
45 --      processes.
46 --   2) The pre_insert business process is then executed which enables any
47 --      logic to be processed before the insert dml process is executed.
48 --   3) The insert_dml process will physical perform the insert dml into the
49 --      specified entity.
50 --   4) The post_insert business process is then executed which enables any
51 --      logic to be processed after the insert dml process.
52 --
53 -- Prerequisites:
54 --   The main parameters to the this process have to be in the record
55 --   format.
56 --
57 -- In Parameters:
58 --
59 -- Post Success:
60 --   A fully validated row will be inserted into the specified entity
61 --   without being committed.
62 --
63 -- Post Failure:
64 --   If an error has occurred, an error message will be raised.
65 --
66 -- Developer Implementation Notes:
67 --   None.
68 --
69 -- Access Status:
70 --   Internal Development Use Only.
71 --
72 -- {End Of Comments}
73 -- ----------------------------------------------------------------------------
74 Procedure ins
75   (p_effective_date               in date
76   ,p_rec                      in out nocopy ota_trb_shd.g_rec_type
77   );
78 --
79 -- ----------------------------------------------------------------------------
80 -- |---------------------------------< ins >----------------------------------|
81 -- ----------------------------------------------------------------------------
82 -- {Start Of Comments}
83 --
84 -- Description:
85 --   This procedure is the attribute interface for the insert
86 --   process for the specified entity and is the outermost layer. The role
87 --   of this process is to insert a fully validated row into the HR schema
88 --   passing back to the calling process, any system generated values
89 --   (e.g. object version number attributes).The processing of this
90 --   procedure is as follows:
91 --   1) The attributes are converted into a local record structure by
92 --      calling the convert_args function.
93 --   2) After the conversion has taken place, the corresponding record ins
94 --      interface process is executed.
95 --   3) OUT parameters are then set to their corresponding record attributes.
96 --
97 -- Prerequisites:
98 --
99 -- In Parameters:
100 --
101 -- Post Success:
102 --   A fully validated row will be inserted for the specified entity
103 --   without being committed.
104 --
105 -- Post Failure:
106 --   If an error has occurred, an error message will be raised.
107 --
108 -- Developer Implementation Notes:
109 --   None.
110 --
111 -- Access Status:
112 --   Internal Development Use Only.
113 --
114 -- {End Of Comments}
115 -- ----------------------------------------------------------------------------
116 Procedure ins
117   (p_effective_date               in     date
118   ,p_supplied_resource_id           in     number
119   ,p_date_booking_placed            in     date
120   ,p_status                         in     varchar2
121   ,p_event_id                       in     number   default null
122   ,p_absolute_price                 in     number   default null
123   ,p_booking_person_id              in     number   default null
124   ,p_comments                       in     varchar2 default null
125   ,p_contact_name                   in     varchar2 default null
126   ,p_contact_phone_number           in     varchar2 default null
127   ,p_delegates_per_unit             in     number   default null
128   ,p_quantity                       in     number   default null
129   ,p_required_date_from             in     date     default null
130   ,p_required_date_to               in     date     default null
131   ,p_required_end_time              in     varchar2 default null
132   ,p_required_start_time            in     varchar2 default null
133   ,p_deliver_to                     in     varchar2 default null
134   ,p_primary_venue_flag             in     varchar2 default null
135   ,p_role_to_play                   in     varchar2 default null
136   ,p_trb_information_category       in     varchar2 default null
137   ,p_trb_information1               in     varchar2 default null
138   ,p_trb_information2               in     varchar2 default null
139   ,p_trb_information3               in     varchar2 default null
140   ,p_trb_information4               in     varchar2 default null
141   ,p_trb_information5               in     varchar2 default null
142   ,p_trb_information6               in     varchar2 default null
143   ,p_trb_information7               in     varchar2 default null
144   ,p_trb_information8               in     varchar2 default null
145   ,p_trb_information9               in     varchar2 default null
146   ,p_trb_information10              in     varchar2 default null
147   ,p_trb_information11              in     varchar2 default null
148   ,p_trb_information12              in     varchar2 default null
149   ,p_trb_information13              in     varchar2 default null
150   ,p_trb_information14              in     varchar2 default null
151   ,p_trb_information15              in     varchar2 default null
152   ,p_trb_information16              in     varchar2 default null
153   ,p_trb_information17              in     varchar2 default null
154   ,p_trb_information18              in     varchar2 default null
155   ,p_trb_information19              in     varchar2 default null
156   ,p_trb_information20              in     varchar2 default null
157   ,p_display_to_learner_flag      in     varchar2  default null
158   ,p_book_entire_period_flag    in     varchar2  default null
159 --  ,p_unbook_request_flag    in     varchar2  default null
160   ,p_chat_id                        in     number   default null
161   ,p_forum_id                       in     number   default null
162   ,p_resource_booking_id               out nocopy number
163   ,p_object_version_number             out nocopy number
164   ,p_timezone_code                   IN VARCHAR2 DEFAULT NULL
165   );
166 --
167 end ota_trb_ins;