DBA Data[Home] [Help]

APPS.OTA_BJT_INS dependencies on OTA_BKNG_JUSTIFICATIONS_TL

Line 65: -- Insert the row into: ota_bkng_justifications_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: ota_bkng_justifications_tl
66: --
67: insert into ota_bkng_justifications_tl
68: (booking_justification_id
69: ,justification_text

Line 67: insert into ota_bkng_justifications_tl

63: --
64: --
65: -- Insert the row into: ota_bkng_justifications_tl
66: --
67: insert into ota_bkng_justifications_tl
68: (booking_justification_id
69: ,justification_text
70: ,source_lang
71: ,language

Line 214: (p_module_name => 'OTA_BKNG_JUSTIFICATIONS_TL'

210: --
211: when hr_api.cannot_find_prog_unit then
212: --
213: hr_api.cannot_find_prog_unit_error
214: (p_module_name => 'OTA_BKNG_JUSTIFICATIONS_TL'
215: ,p_hook_type => 'AI');
216: --
217: end;
218: --

Line 326: from ota_bkng_justifications_tl bjt

322: select l.language_code
323: from fnd_languages l
324: where l.installed_flag in ('I','B')
325: and not exists (select null
326: from ota_bkng_justifications_tl bjt
327: where bjt.booking_justification_id = p_booking_justification_id
328: and bjt.language = l.language_code);
329: --
330: l_proc varchar2(72) := g_package || 'ins_tl';