DBA Data[Home] [Help]

APPS.FEM_OBJECT_DEFINITION_PKG dependencies on FND_LOAD_UTIL

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

349: begin
350:
351:
352: -- Translate owner to file_last_updated_by
353: f_luby := fnd_load_util.owner_id(x_owner);
354:
355: -- Translate char last_update_date to date
356: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
357: begin

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

361: where OBJECT_DEFINITION_ID = x_OBJECT_DEFINITION_ID
362: and LANGUAGE = userenv('LANG');
363:
364: -- Test for customization and version
365: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
366: db_ludate, x_custom_mode)) then
367: -- Update translations for this language
368: update FEM_OBJECT_DEFINITION_TL set
369: DISPLAY_NAME = decode(x_DISPLAY_NAME,

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

366: db_ludate, x_custom_mode)) then
367: -- Update translations for this language
368: update FEM_OBJECT_DEFINITION_TL set
369: DISPLAY_NAME = decode(x_DISPLAY_NAME,
370: fnd_load_util.null_value, null, -- Real null
371: null, x_DISPLAY_NAME, -- No change
372: x_DISPLAY_NAME),
373: DESCRIPTION = nvl(x_description, DESCRIPTION),
374: LAST_UPDATE_DATE = f_ludate,