DBA Data[Home] [Help]

APPS.FEM_DIM_ATTR_VERSIONS_PKG dependencies on FND_LOAD_UTIL

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

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

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

318: where VERSION_ID = x_VERSION_ID
319: and LANGUAGE = userenv('LANG');
320:
321: -- Test for customization and version
322: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
323: db_ludate, x_custom_mode)) then
324: -- Update translations for this language
325: update FEM_DIM_ATTR_VERSIONS_TL set
326: VERSION_NAME = decode(x_VERSION_NAME,

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

323: db_ludate, x_custom_mode)) then
324: -- Update translations for this language
325: update FEM_DIM_ATTR_VERSIONS_TL set
326: VERSION_NAME = decode(x_VERSION_NAME,
327: fnd_load_util.null_value, null, -- Real null
328: null, x_VERSION_NAME, -- No change
329: x_VERSION_NAME),
330: DESCRIPTION = nvl(x_description, DESCRIPTION),
331: LAST_UPDATE_DATE = f_ludate,