DBA Data[Home] [Help]

APPS.FEM_DATASETS_PKG dependencies on FND_LOAD_UTIL

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

300: begin
301:
302:
303: -- Translate owner to file_last_updated_by
304: f_luby := fnd_load_util.owner_id(x_owner);
305:
306: -- Translate char last_update_date to date
307: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
308: begin

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

312: where DATASET_CODE = x_DATASET_CODE
313: and LANGUAGE = userenv('LANG');
314:
315: -- Test for customization and version
316: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
317: db_ludate, x_custom_mode)) then
318: -- Update translations for this language
319: update FEM_DATASETS_TL set
320: DATASET_NAME = decode(x_DATASET_NAME,

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

317: db_ludate, x_custom_mode)) then
318: -- Update translations for this language
319: update FEM_DATASETS_TL set
320: DATASET_NAME = decode(x_DATASET_NAME,
321: fnd_load_util.null_value, null, -- Real null
322: null, x_DATASET_NAME, -- No change
323: x_DATASET_NAME),
324: DESCRIPTION = nvl(x_description, DESCRIPTION),
325: LAST_UPDATE_DATE = f_ludate,