DBA Data[Home] [Help]

APPS.IRC_IDT_UPD dependencies on IRC_DEFAULT_POSTINGS_TL

Line 66: -- Update the irc_default_postings_tl Row

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

Line 68: update irc_default_postings_tl

64: --
65: --
66: -- Update the irc_default_postings_tl Row
67: --
68: update irc_default_postings_tl
69: set
70: default_posting_id = p_rec.default_posting_id
71: ,language = p_rec.language
72: ,source_language = p_rec.source_language

Line 255: (p_module_name => 'IRC_DEFAULT_POSTINGS_TL'

251: --
252: when hr_api.cannot_find_prog_unit then
253: --
254: hr_api.cannot_find_prog_unit_error
255: (p_module_name => 'IRC_DEFAULT_POSTINGS_TL'
256: ,p_hook_type => 'AU');
257: --
258: end;
259: --

Line 505: from irc_default_postings_tl idt

501: -- source_lang match the specified language.
502: --
503: cursor csr_upd_langs is
504: select idt.language
505: from irc_default_postings_tl idt
506: where idt.default_posting_id = p_default_posting_id
507: and p_language_code in (idt.language
508: ,idt.source_language);
509: --