DBA Data[Home] [Help]

APPS.FEM_VALUE_SETS_PKG dependencies on FND_LOAD_UTIL

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

317: begin
318:
319:
320: -- Translate owner to file_last_updated_by
321: f_luby := fnd_load_util.owner_id(x_owner);
322:
323: -- Translate char last_update_date to date
324: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
325: begin

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

329: where VALUE_SET_ID = x_VALUE_SET_ID
330: and LANGUAGE = userenv('LANG');
331:
332: -- Test for customization and version
333: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
334: db_ludate, x_custom_mode)) then
335: -- Update translations for this language
336: update FEM_VALUE_SETS_TL set
337: VALUE_SET_NAME = decode(x_VALUE_SET_NAME,

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

334: db_ludate, x_custom_mode)) then
335: -- Update translations for this language
336: update FEM_VALUE_SETS_TL set
337: VALUE_SET_NAME = decode(x_VALUE_SET_NAME,
338: fnd_load_util.null_value, null, -- Real null
339: null, x_VALUE_SET_NAME, -- No change
340: x_VALUE_SET_NAME),
341: DESCRIPTION = nvl(x_description, DESCRIPTION),
342: LAST_UPDATE_DATE = f_ludate,