DBA Data[Home] [Help]

APPS.OTA_TFH_API_BUS dependencies on OTA_TFH_API_SHD

Line 15: p_rec in out nocopy ota_tfh_api_shd.g_rec_type

11: -- |---------------------------< insert_validate >----------------------------|
12: -- ----------------------------------------------------------------------------
13: Procedure insert_validate
14: (
15: p_rec in out nocopy ota_tfh_api_shd.g_rec_type
16: ,p_transaction_type in varchar2
17: ) is
18: --
19: l_proc varchar2(72) := g_package||'insert_validate';

Line 172: Procedure update_validate(p_rec in out nocopy ota_tfh_api_shd.g_rec_type

168: -- function calls. Try and avoid using conditional branching logic.
169: --
170: -- {End Of Comments}
171: -- ----------------------------------------------------------------------------
172: Procedure update_validate(p_rec in out nocopy ota_tfh_api_shd.g_rec_type
173: ,p_transaction_type in varchar2) is
174: --
175: l_proc varchar2(72) := g_package||'update_validate';
176: --

Line 178: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.type

174: --
175: l_proc varchar2(72) := g_package||'update_validate';
176: --
177: l_type_changed boolean
178: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.type
179: , p_rec.type );
180: --
181: l_transfer_status_changed boolean
182: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status

Line 182: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status

178: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.type
179: , p_rec.type );
180: --
181: l_transfer_status_changed boolean
182: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status
183: , p_rec.transfer_status );
184: --
185: l_authorizer_person_id_changed boolean
186: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.authorizer_person_id

Line 186: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.authorizer_person_id

182: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.transfer_status
183: , p_rec.transfer_status );
184: --
185: l_authorizer_person_id_changed boolean
186: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.authorizer_person_id
187: , p_rec.authorizer_person_id );
188: --
189: l_address_id_changed boolean
190: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.address_id

Line 190: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.address_id

186: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.authorizer_person_id
187: , p_rec.authorizer_person_id );
188: --
189: l_address_id_changed boolean
190: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.address_id
191: , p_rec.address_id );
192: --
193: l_contact_id_changed boolean
194: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.contact_id

Line 194: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.contact_id

190: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.address_id
191: , p_rec.address_id );
192: --
193: l_contact_id_changed boolean
194: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.contact_id
195: , p_rec.contact_id );
196: --
197: l_customer_id_changed boolean
198: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.customer_id

Line 198: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.customer_id

194: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.contact_id
195: , p_rec.contact_id );
196: --
197: l_customer_id_changed boolean
198: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.customer_id
199: , p_rec.customer_id );
200: --
201: l_vendor_id_changed boolean
202: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.vendor_id

Line 202: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.vendor_id

198: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.customer_id
199: , p_rec.customer_id );
200: --
201: l_vendor_id_changed boolean
202: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.vendor_id
203: , p_rec.vendor_id );
204: --
205: l_cancelled_flag_changed boolean
206: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.cancelled_flag

Line 206: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.cancelled_flag

202: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.vendor_id
203: , p_rec.vendor_id );
204: --
205: l_cancelled_flag_changed boolean
206: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.cancelled_flag
207: , p_rec.cancelled_flag );
208: --
209: l_supercedes_header_id_changed boolean
210: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.superceding_header_id

Line 210: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.superceding_header_id

206: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.cancelled_flag
207: , p_rec.cancelled_flag );
208: --
209: l_supercedes_header_id_changed boolean
210: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.superceding_header_id
211: , p_rec.superceding_header_id );
212: --
213: l_payment_method_changed boolean
214: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.payment_method

Line 214: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.payment_method

210: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.superceding_header_id
211: , p_rec.superceding_header_id );
212: --
213: l_payment_method_changed boolean
214: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.payment_method
215: , p_rec.payment_method );
216: --
217: l_administrator_changed boolean
218: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.administrator

Line 218: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.administrator

214: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.payment_method
215: , p_rec.payment_method );
216: --
217: l_administrator_changed boolean
218: := ota_general.value_changed( ota_tfh_api_shd.g_old_rec.administrator
219: , p_rec.administrator );
220: --
221: Begin
222: hr_utility.set_location('Entering:'||l_proc, 5);

Line 228: ( ota_tfh_api_shd.g_old_rec

224: -- Call all supporting business operations
225: --
226: --
227: ota_tfh_api_business_rules.check_update_header
228: ( ota_tfh_api_shd.g_old_rec
229: , p_rec
230: , p_transaction_type);
231: --
232: -- If cancelling the Header no further checks are required

Line 403: ,ota_tfh_api_shd.g_old_rec.transfer_status);

399: --
400: If l_transfer_status_changed then
401: ota_tfh_api_business_rules.check_transfer_rules
402: (p_rec.transfer_status
403: ,ota_tfh_api_shd.g_old_rec.transfer_status);
404: End if;
405: --
406: If l_administrator_changed Then
407: --

Line 421: Procedure delete_validate(p_rec in ota_tfh_api_shd.g_rec_type) is

417: --
418: -- ----------------------------------------------------------------------------
419: -- |---------------------------< delete_validate >----------------------------|
420: -- ----------------------------------------------------------------------------
421: Procedure delete_validate(p_rec in ota_tfh_api_shd.g_rec_type) is
422: --
423: l_proc varchar2(72) := g_package||'delete_validate';
424: --
425: Begin