DBA Data[Home] [Help]

APPS.IEU_SEED_DATA_LOADER_PKG dependencies on IEU_WP_SECTIONS_TL

Line 728: update IEU_WP_SECTIONS_TL

724:
725: user_id := fnd_load_util.owner_id(P_OWNER);
726:
727: if (p_upload_mode = 'NLS') then
728: update IEU_WP_SECTIONS_TL
729: set source_lang = userenv('LANG'),
730: object_version_number = object_version_number + 1,
731: section_label = p_section_label,
732: section_description = p_section_description,

Line 755: update IEU_WP_SECTIONS_TL

751: if (sql%notfound) then
752: raise no_data_found;
753: end if;
754:
755: update IEU_WP_SECTIONS_TL
756: set object_version_number = object_version_number + 1,
757: last_updated_by = user_id,
758: last_update_date = sysdate,
759: last_update_login = 0,

Line 790: insert into ieu_wp_sections_tl

786: sysdate,
787: 0,
788: p_section_code);
789:
790: insert into ieu_wp_sections_tl
791: (section_id,
792: object_version_number,
793: created_by,
794: creation_date,

Line 816: (select null from ieu_wp_sections_tl t

812: userenv('LANG')
813: from fnd_languages l
814: where l.installed_flag in ('I', 'B')
815: and not exists
816: (select null from ieu_wp_sections_tl t
817: where t.section_id = to_number(p_section_id)
818: and t.language = l.language_code);
819: end;
820: end if;