DBA Data[Home] [Help]

APPS.FEM_TABLES_PKG dependencies on FND_LOAD_UTIL

Line 337: f_luby := fnd_load_util.owner_id(x_owner);

333: begin
334:
335:
336: -- Translate owner to file_last_updated_by
337: f_luby := fnd_load_util.owner_id(x_owner);
338:
339: -- Translate char last_update_date to date
340: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
341: begin

Line 349: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,

345: where TABLE_NAME = x_TABLE_NAME
346: and LANGUAGE = userenv('LANG');
347:
348: -- Test for customization and version
349: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
350: db_ludate, x_custom_mode)) then
351: -- Update translations for this language
352: update FEM_TABLES_TL set
353: DISPLAY_NAME = decode(x_DISPLAY_NAME,

Line 354: fnd_load_util.null_value, null, -- Real null

350: db_ludate, x_custom_mode)) then
351: -- Update translations for this language
352: update FEM_TABLES_TL set
353: DISPLAY_NAME = decode(x_DISPLAY_NAME,
354: fnd_load_util.null_value, null, -- Real null
355: null, x_DISPLAY_NAME, -- No change
356: x_DISPLAY_NAME),
357: DESCRIPTION = nvl(x_description, DESCRIPTION),
358: LAST_UPDATE_DATE = f_ludate,