DBA Data[Home] [Help]

APPS.FEM_COLUMN_REQUIREMNT_PKG dependencies on FND_LOAD_UTIL

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

392: begin
393:
394:
395: -- Translate owner to file_last_updated_by
396: f_luby := fnd_load_util.owner_id(x_owner);
397:
398: -- Translate char last_update_date to date
399: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
400: begin

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

404: where COLUMN_NAME = x_COLUMN_NAME
405: and LANGUAGE = userenv('LANG');
406:
407: -- Test for customization and version
408: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
409: db_ludate, x_custom_mode)) then
410: -- Update translations for this language
411: update FEM_COLUMN_REQUIREMNT_TL set
412: DISPLAY_NAME = decode(x_DISPLAY_NAME,

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

409: db_ludate, x_custom_mode)) then
410: -- Update translations for this language
411: update FEM_COLUMN_REQUIREMNT_TL set
412: DISPLAY_NAME = decode(x_DISPLAY_NAME,
413: fnd_load_util.null_value, null, -- Real null
414: null, x_DISPLAY_NAME, -- No change
415: x_DISPLAY_NAME),
416: DESCRIPTION = nvl(x_description, DESCRIPTION),
417: LAST_UPDATE_DATE = f_ludate,