DBA Data[Home] [Help]

APPS.FEM_TAB_COLUMNS_PKG dependencies on FND_LOAD_UTIL

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

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

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

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

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

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