DBA Data[Home] [Help]

APPS.FEM_SIC_PKG dependencies on FND_LOAD_UTIL

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

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

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

315: where SIC_ID = x_SIC_ID
316: and LANGUAGE = userenv('LANG');
317:
318: -- Test for customization and version
319: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
320: db_ludate, x_custom_mode)) then
321: -- Update translations for this language
322: update FEM_SIC_TL set
323: SIC_NAME = decode(x_SIC_NAME,

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

320: db_ludate, x_custom_mode)) then
321: -- Update translations for this language
322: update FEM_SIC_TL set
323: SIC_NAME = decode(x_SIC_NAME,
324: fnd_load_util.null_value, null, -- Real null
325: null, x_SIC_NAME, -- No change
326: x_SIC_NAME),
327: DESCRIPTION = nvl(x_description, DESCRIPTION),
328: LAST_UPDATE_DATE = f_ludate,