DBA Data[Home] [Help]

APPS.FEM_USER_LOV170_PKG dependencies on FND_LOAD_UTIL

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

290: begin
291:
292:
293: -- Translate owner to file_last_updated_by
294: f_luby := fnd_load_util.owner_id(x_owner);
295:
296: -- Translate char last_update_date to date
297: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
298: begin

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

302: where USER_LOV170_CODE = x_USER_LOV170_CODE
303: and LANGUAGE = userenv('LANG');
304:
305: -- Test for customization and version
306: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
307: db_ludate, x_custom_mode)) then
308: -- Update translations for this language
309: update FEM_USER_LOV170_TL set
310: USER_LOV170_NAME = decode(x_USER_LOV170_NAME,

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

307: db_ludate, x_custom_mode)) then
308: -- Update translations for this language
309: update FEM_USER_LOV170_TL set
310: USER_LOV170_NAME = decode(x_USER_LOV170_NAME,
311: fnd_load_util.null_value, null, -- Real null
312: null, x_USER_LOV170_NAME, -- No change
313: x_USER_LOV170_NAME),
314: DESCRIPTION = nvl(x_description, DESCRIPTION),
315: LAST_UPDATE_DATE = f_ludate,