DBA Data[Home] [Help]

APPS.FEM_FUNC_DIM_SETS_PKG dependencies on FND_LOAD_UTIL

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

265: begin
266:
267:
268: -- Translate owner to file_last_updated_by
269: f_luby := fnd_load_util.owner_id(x_owner);
270:
271: -- Translate char last_update_date to date
272: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
273: begin

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

277: where FUNC_DIM_SET_ID = x_FUNC_DIM_SET_ID
278: and LANGUAGE = userenv('LANG');
279:
280: -- Test for customization and version
281: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
282: db_ludate, x_custom_mode)) then
283: -- Update translations for this language
284: update FEM_FUNC_DIM_SETS_TL set
285: FUNC_DIM_SET_NAME = decode(x_FUNC_DIM_SET_NAME,

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

282: db_ludate, x_custom_mode)) then
283: -- Update translations for this language
284: update FEM_FUNC_DIM_SETS_TL set
285: FUNC_DIM_SET_NAME = decode(x_FUNC_DIM_SET_NAME,
286: fnd_load_util.null_value, null, -- Real null
287: null, x_FUNC_DIM_SET_NAME, -- No change
288: x_FUNC_DIM_SET_NAME),
289: LAST_UPDATE_DATE = f_ludate,
290: LAST_UPDATED_BY = f_luby,