DBA Data[Home] [Help]

APPS.OTA_BJT_UPD dependencies on OTA_BKNG_JUSTIFICATIONS_TL

Line 66: -- Update the ota_bkng_justifications_tl Row

62: --
63: --
64: --
65: --
66: -- Update the ota_bkng_justifications_tl Row
67: --
68: update ota_bkng_justifications_tl
69: set
70: booking_justification_id = p_rec.booking_justification_id

Line 68: update ota_bkng_justifications_tl

64: --
65: --
66: -- Update the ota_bkng_justifications_tl Row
67: --
68: update ota_bkng_justifications_tl
69: set
70: booking_justification_id = p_rec.booking_justification_id
71: ,justification_text = p_rec.justification_text
72: ,source_lang = p_rec.source_lang

Line 208: (p_module_name => 'OTA_BKNG_JUSTIFICATIONS_TL'

204: --
205: when hr_api.cannot_find_prog_unit then
206: --
207: hr_api.cannot_find_prog_unit_error
208: (p_module_name => 'OTA_BKNG_JUSTIFICATIONS_TL'
209: ,p_hook_type => 'AU');
210: --
211: end;
212: --

Line 384: from ota_bkng_justifications_tl bjt

380: -- source_lang match the specified language.
381: --
382: cursor csr_upd_langs is
383: select bjt.language
384: from ota_bkng_justifications_tl bjt
385: where bjt.booking_justification_id = p_booking_justification_id
386: and p_language_code in (bjt.language
387: ,bjt.source_lang);
388: --