DBA Data[Home] [Help]

APPS.PER_STT_INS dependencies on PER_SHARED_TYPES_TL

Line 57: -- Insert the row into: per_shared_types_tl

53: Begin
54: hr_utility.set_location('Entering:'||l_proc, 5);
55: --
56: --
57: -- Insert the row into: per_shared_types_tl
58: --
59: insert into per_shared_types_tl
60: ( shared_type_id,
61: language,

Line 59: insert into per_shared_types_tl

55: --
56: --
57: -- Insert the row into: per_shared_types_tl
58: --
59: insert into per_shared_types_tl
60: ( shared_type_id,
61: language,
62: source_lang,
63: shared_type_name

Line 197: (p_module_name => 'per_shared_types_tl'

193: --
194: when hr_api.cannot_find_prog_unit then
195: --
196: hr_api.cannot_find_prog_unit_error
197: (p_module_name => 'per_shared_types_tl'
198: ,p_hook_type => 'AI');
199: --
200: end;
201: --

Line 288: from per_shared_types_tl stt

284: select l.language_code
285: from fnd_languages l
286: where l.installed_flag in ('I','B')
287: and not exists ( select null
288: from per_shared_types_tl stt
289: where stt.shared_type_id = p_shared_type_id
290: and stt.language = l.language_code );
291: l_proc varchar2(72) := g_package||'ins_tl';
292: begin