DBA Data[Home] [Help]

APPS.IRC_IPT_INS dependencies on IRC_POSTING_CONTENTS_TL

Line 65: -- Insert the row into: irc_posting_contents_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: irc_posting_contents_tl
66: --
67: insert into irc_posting_contents_tl
68: (posting_content_id
69: ,language

Line 67: insert into irc_posting_contents_tl

63: --
64: --
65: -- Insert the row into: irc_posting_contents_tl
66: --
67: insert into irc_posting_contents_tl
68: (posting_content_id
69: ,language
70: ,source_language
71: ,name

Line 260: (p_module_name => 'IRC_POSTING_CONTENTS_TL'

256: --
257: when hr_api.cannot_find_prog_unit then
258: --
259: hr_api.cannot_find_prog_unit_error
260: (p_module_name => 'IRC_POSTING_CONTENTS_TL'
261: ,p_hook_type => 'AI');
262: --
263: end;
264: --

Line 401: from irc_posting_contents_tl ipt

397: select l.language_code
398: from fnd_languages l
399: where l.installed_flag in ('I','B')
400: and not exists (select null
401: from irc_posting_contents_tl ipt
402: where ipt.posting_content_id = p_posting_content_id
403: and ipt.language = l.language_code);
404: --
405: l_proc varchar2(72) := g_package || 'ins_tl';