DBA Data[Home] [Help]

APPS.OTA_TRAINING_RECORD dependencies on OTA_EVENTS

Line 70: event_id ota_events.event_id%TYPE,

66: start_date ota_activity_versions_vl.start_date%TYPE,
67: end_date ota_activity_versions_vl.end_date%TYPE,
68: certification_member_id ota_certification_members.certification_member_id%TYPE,
69: member_sequence ota_certification_members.member_sequence%TYPE,
70: event_id ota_events.event_id%TYPE,
71: perf_status ota_booking_status_types_tl.name%TYPE,
72: cert_prd_enrollment_id ota_cert_mbr_enrollments.cert_prd_enrollment_id%TYPE,
73: cert_enrollment_id ota_cert_enrollments.cert_enrollment_id%TYPE,
74: certification_id ota_cert_enrollments.certification_id%TYPE,

Line 79: classroom_id ota_events.offering_id%TYPE

75: site_address varchar2(255),
76: site_short_name varchar2(255),
77: fnd_user_name varchar2(255),
78: encoded_site_address varchar2(32767),
79: classroom_id ota_events.offering_id%TYPE
80: );
81:
82: TYPE cert_competencies_tabletype IS TABLE OF cert_comp_rectype NOT NULL ;
83: TYPE components_tabletype IS TABLE OF cert_component_rectype NOT NULL ;

Line 119: event_id OTA_EVENTS_V.event_id%TYPE,

115: TYPE certification_tabletype IS TABLE OF certification_rectype NOT NULL;
116:
117: TYPE event_rectype IS RECORD
118: (
119: event_id OTA_EVENTS_V.event_id%TYPE,
120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,

Line 120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,

116:
117: TYPE event_rectype IS RECORD
118: (
119: event_id OTA_EVENTS_V.event_id%TYPE,
120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,

Line 121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,

117: TYPE event_rectype IS RECORD
118: (
119: event_id OTA_EVENTS_V.event_id%TYPE,
120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,

Line 122: title OTA_EVENTS_V.title%TYPE,

118: (
119: event_id OTA_EVENTS_V.event_id%TYPE,
120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,

Line 123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,

119: event_id OTA_EVENTS_V.event_id%TYPE,
120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,

Line 124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,

120: object_version_number OTA_EVENTS_V.object_version_number%TYPE,
121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,

Line 125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,

121: business_group_id OTA_EVENTS_V.business_group_id%TYPE,
122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,

Line 126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,

122: title OTA_EVENTS_V.title%TYPE,
123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,

Line 127: duration OTA_EVENTS_V.duration%TYPE,

123: course_start_date OTA_EVENTS_V.course_start_date%TYPE,
124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,

Line 128: duration_units OTA_EVENTS_V.duration_units%TYPE,

124: course_start_time OTA_EVENTS_V.course_start_time%TYPE,
125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,

Line 129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,

125: course_end_date OTA_EVENTS_V.course_end_date%TYPE,
126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,

Line 130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,

126: course_end_time OTA_EVENTS_V.course_end_time%TYPE,
127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,

Line 131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,

127: duration OTA_EVENTS_V.duration%TYPE,
128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,

Line 132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,

128: duration_units OTA_EVENTS_V.duration_units%TYPE,
129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,

Line 133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,

129: enrolment_start_date OTA_EVENTS_V.enrolment_start_date%TYPE,
130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,

Line 134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,

130: enrolment_end_date OTA_EVENTS_V.enrolment_end_date%TYPE,
131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,

Line 135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,

131: resource_booking_flag OTA_EVENTS_V.resource_booking_flag%TYPE,
132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,

Line 136: standard_price OTA_EVENTS_V.standard_price%TYPE,

132: public_event_flag OTA_EVENTS_V.public_event_flag%TYPE,
133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,

Line 137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,

133: minimum_attendees OTA_EVENTS_V.minimum_attendees%TYPE,
134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,

Line 138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,

134: maximum_attendees OTA_EVENTS_V.maximum_attendees%TYPE,
135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,

Line 139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,

135: maximum_internal_attendees OTA_EVENTS_V.maximum_internal_attendees%TYPE,
136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,

Line 140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,

136: standard_price OTA_EVENTS_V.standard_price%TYPE,
137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,

Line 141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,

137: parent_event_id OTA_EVENTS_V.parent_event_id%TYPE,
138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,

Line 142: created_by OTA_EVENTS_V.created_by%TYPE,

138: book_independent_flag OTA_EVENTS_V.book_independent_flag%TYPE,
139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,

Line 143: creation_date OTA_EVENTS_V.creation_date%TYPE,

139: actual_cost OTA_EVENTS_V.actual_cost%TYPE,
140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,

Line 144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,

140: budget_cost OTA_EVENTS_V.budget_cost%TYPE,
141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,

Line 145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,

141: budget_currency_code OTA_EVENTS_V.budget_currency_code%TYPE,
142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,

Line 146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,

142: created_by OTA_EVENTS_V.created_by%TYPE,
143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,

Line 147: comments OTA_EVENTS_V.comments%TYPE,

143: creation_date OTA_EVENTS_V.creation_date%TYPE,
144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,

Line 148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,

144: last_updated_by OTA_EVENTS_V.last_updated_by%TYPE,
145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,

Line 149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,

145: last_update_login OTA_EVENTS_V.last_update_login%TYPE,
146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,

Line 150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,

146: last_update_date OTA_EVENTS_V.last_update_date%TYPE,
147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,

Line 151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,

147: comments OTA_EVENTS_V.comments%TYPE,
148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,

Line 152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,

148: evt_information_category OTA_EVENTS_V.evt_information_category%TYPE,
149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,

Line 153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,

149: evt_information1 OTA_EVENTS_V.evt_information1%TYPE,
150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,

Line 154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,

150: evt_information2 OTA_EVENTS_V.evt_information2%TYPE,
151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,

Line 155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,

151: evt_information3 OTA_EVENTS_V.evt_information3%TYPE,
152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,

Line 156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,

152: evt_information4 OTA_EVENTS_V.evt_information4%TYPE,
153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,

Line 157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,

153: evt_information5 OTA_EVENTS_V.evt_information5%TYPE,
154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,

Line 158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,

154: evt_information6 OTA_EVENTS_V.evt_information6%TYPE,
155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,

Line 159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,

155: evt_information7 OTA_EVENTS_V.evt_information7%TYPE,
156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,

Line 160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,

156: evt_information8 OTA_EVENTS_V.evt_information8%TYPE,
157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,

Line 161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,

157: evt_information9 OTA_EVENTS_V.evt_information9%TYPE,
158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,

Line 162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,

158: evt_information10 OTA_EVENTS_V.evt_information10%TYPE,
159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,

Line 163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,

159: evt_information11 OTA_EVENTS_V.evt_information11%TYPE,
160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,

Line 164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,

160: evt_information12 OTA_EVENTS_V.evt_information12%TYPE,
161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,

Line 165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,

161: evt_information13 OTA_EVENTS_V.evt_information13%TYPE,
162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,

Line 166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,

162: evt_information14 OTA_EVENTS_V.evt_information14%TYPE,
163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,

Line 167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,

163: evt_information15 OTA_EVENTS_V.evt_information15%TYPE,
164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,

Line 168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,

164: evt_information16 OTA_EVENTS_V.evt_information16%TYPE,
165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,

Line 169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,

165: evt_information17 OTA_EVENTS_V.evt_information17%TYPE,
166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,

Line 170: organization_id OTA_EVENTS_V.organization_id%TYPE,

166: evt_information18 OTA_EVENTS_V.evt_information18%TYPE,
167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,

Line 171: organization_name OTA_EVENTS_V.organization_name%TYPE,

167: evt_information19 OTA_EVENTS_V.evt_information19%TYPE,
168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,

Line 172: centre OTA_EVENTS_V.centre%TYPE,

168: evt_information20 OTA_EVENTS_V.evt_information20%TYPE,
169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,

Line 173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,

169: secure_event_flag OTA_EVENTS_V.secure_event_flag%TYPE,
170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,

Line 174: currency_code OTA_EVENTS_V.currency_code%TYPE,

170: organization_id OTA_EVENTS_V.organization_id%TYPE,
171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,

Line 175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,

171: organization_name OTA_EVENTS_V.organization_name%TYPE,
172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,

Line 176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,

172: centre OTA_EVENTS_V.centre%TYPE,
173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,

Line 177: language_code OTA_EVENTS_V.language_code%TYPE,

173: centre_meaning OTA_EVENTS_V.centre_meaning%TYPE,
174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,

Line 178: language_description OTA_EVENTS_V.language_description%TYPE,

174: currency_code OTA_EVENTS_V.currency_code%TYPE,
175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,

Line 179: price_basis OTA_EVENTS_V.price_basis%TYPE,

175: development_event_type OTA_EVENTS_V.development_event_type%TYPE,
176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,

Line 180: programme_code OTA_EVENTS_V.programme_code%TYPE,

176: development_event_type_meaning OTA_EVENTS_V.development_event_type_meaning%TYPE,
177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,

Line 181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,

177: language_code OTA_EVENTS_V.language_code%TYPE,
178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,

Line 182: event_status OTA_EVENTS_V.event_status%TYPE,

178: language_description OTA_EVENTS_V.language_description%TYPE,
179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,

Line 183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,

179: price_basis OTA_EVENTS_V.price_basis%TYPE,
180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,

Line 184: activity_name OTA_EVENTS_V.activity_name%TYPE,

180: programme_code OTA_EVENTS_V.programme_code%TYPE,
181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,

Line 185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,

181: programme_code_meaning OTA_EVENTS_V.programme_code_meaning%TYPE,
182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,

Line 186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,

182: event_status OTA_EVENTS_V.event_status%TYPE,
183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,

Line 187: event_type OTA_EVENTS_V.event_type%TYPE,

183: event_status_meaning OTA_EVENTS_V.event_status_meaning%TYPE,
184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,

Line 188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,

184: activity_name OTA_EVENTS_V.activity_name%TYPE,
185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,

Line 189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,

185: activity_version_id OTA_EVENTS_V.activity_version_id%TYPE,
186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,

Line 190: user_status OTA_EVENTS_V.user_status%TYPE,

186: activity_version_name OTA_EVENTS_V.activity_version_name%TYPE,
187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,

Line 191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,

187: event_type OTA_EVENTS_V.event_type%TYPE,
188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,

Line 192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,

188: event_type_meaning OTA_EVENTS_V.event_type_meaning%TYPE,
189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,

Line 193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,

189: invoiced_amount OTA_EVENTS_V.invoiced_amount%TYPE,
190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,

Line 194: project_id OTA_EVENTS_V.project_id%TYPE,

190: user_status OTA_EVENTS_V.user_status%TYPE,
191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,

Line 195: project_name OTA_EVENTS_V.project_name%TYPE,

191: user_status_meaning OTA_EVENTS_V.user_status_meaning%TYPE,
192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,

Line 196: project_number OTA_EVENTS_V.project_number%TYPE,

192: vendor_id OTA_EVENTS_V.vendor_id%TYPE,
193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,

Line 197: line_id OTA_EVENTS_V.line_id%TYPE,

193: vendor_name OTA_EVENTS_V.vendor_name%TYPE,
194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,

Line 198: org_id OTA_EVENTS_V.org_id%TYPE,

194: project_id OTA_EVENTS_V.project_id%TYPE,
195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,

Line 199: owner_id OTA_EVENTS_V.owner_id%TYPE,

195: project_name OTA_EVENTS_V.project_name%TYPE,
196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,

Line 200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,

196: project_number OTA_EVENTS_V.project_number%TYPE,
197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,

Line 201: location_id OTA_EVENTS_V.location_id%TYPE,

197: line_id OTA_EVENTS_V.line_id%TYPE,
198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,

Line 202: offering_id OTA_EVENTS_V.offering_id%TYPE,

198: org_id OTA_EVENTS_V.org_id%TYPE,
199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,
206: data_source OTA_EVENTS_V.data_source%TYPE

Line 203: timezone OTA_EVENTS_V.timezone%TYPE,

199: owner_id OTA_EVENTS_V.owner_id%TYPE,
200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,
206: data_source OTA_EVENTS_V.data_source%TYPE
207: );

Line 204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,

200: training_center_id OTA_EVENTS_V.training_center_id%TYPE,
201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,
206: data_source OTA_EVENTS_V.data_source%TYPE
207: );
208:

Line 205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,

201: location_id OTA_EVENTS_V.location_id%TYPE,
202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,
206: data_source OTA_EVENTS_V.data_source%TYPE
207: );
208:
209: TYPE event_tabletype IS TABLE OF event_rectype NOT NULL;

Line 206: data_source OTA_EVENTS_V.data_source%TYPE

202: offering_id OTA_EVENTS_V.offering_id%TYPE,
203: timezone OTA_EVENTS_V.timezone%TYPE,
204: inventory_item_id OTA_EVENTS_V.inventory_item_id%TYPE,
205: parent_offering_id OTA_EVENTS_V.parent_offering_id%TYPE,
206: data_source OTA_EVENTS_V.data_source%TYPE
207: );
208:
209: TYPE event_tabletype IS TABLE OF event_rectype NOT NULL;
210: