DBA Data[Home] [Help]

APPS.FEM_OBJECT_CATALOG_PKG dependencies on FND_LOAD_UTIL

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

307: begin
308:
309:
310: -- Translate owner to file_last_updated_by
311: f_luby := fnd_load_util.owner_id(x_owner);
312:
313: -- Translate char last_update_date to date
314: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
315: begin

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

319: where OBJECT_ID = x_OBJECT_ID
320: and LANGUAGE = userenv('LANG');
321:
322: -- Test for customization and version
323: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
324: db_ludate, x_custom_mode)) then
325: -- Update translations for this language
326: update FEM_OBJECT_CATALOG_TL set
327: OBJECT_NAME = decode(x_OBJECT_NAME,

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

324: db_ludate, x_custom_mode)) then
325: -- Update translations for this language
326: update FEM_OBJECT_CATALOG_TL set
327: OBJECT_NAME = decode(x_OBJECT_NAME,
328: fnd_load_util.null_value, null, -- Real null
329: null, x_OBJECT_NAME, -- No change
330: x_OBJECT_NAME),
331: DESCRIPTION = nvl(x_description, DESCRIPTION),
332: LAST_UPDATE_DATE = f_ludate,