DBA Data[Home] [Help]

APPS.FEM_CAL_PERIODS_PKG dependencies on FND_LOAD_UTIL

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

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

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

326: where CAL_PERIOD_ID = x_CAL_PERIOD_ID
327: and LANGUAGE = userenv('LANG');
328:
329: -- Test for customization and version
330: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
331: db_ludate, x_custom_mode)) then
332: -- Update translations for this language
333: update FEM_CAL_PERIODS_TL set
334: CAL_PERIOD_NAME = decode(x_CAL_PERIOD_NAME,

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

331: db_ludate, x_custom_mode)) then
332: -- Update translations for this language
333: update FEM_CAL_PERIODS_TL set
334: CAL_PERIOD_NAME = decode(x_CAL_PERIOD_NAME,
335: fnd_load_util.null_value, null, -- Real null
336: null, x_CAL_PERIOD_NAME, -- No change
337: x_CAL_PERIOD_NAME),
338: DESCRIPTION = nvl(x_description, DESCRIPTION),
339: LAST_UPDATE_DATE = f_ludate,