DBA Data[Home] [Help]

APPS.FEM_FOLDERS_PKG dependencies on FND_LOAD_UTIL

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

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

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

278: where FOLDER_ID = x_FOLDER_ID
279: and LANGUAGE = userenv('LANG');
280:
281: -- Test for customization and version
282: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
283: db_ludate, x_custom_mode)) then
284: -- Update translations for this language
285: update FEM_FOLDERS_TL set
286: FOLDER_NAME = decode(x_FOLDER_NAME,

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

283: db_ludate, x_custom_mode)) then
284: -- Update translations for this language
285: update FEM_FOLDERS_TL set
286: FOLDER_NAME = decode(x_FOLDER_NAME,
287: fnd_load_util.null_value, null, -- Real null
288: null, x_FOLDER_NAME, -- No change
289: x_FOLDER_NAME),
290: DESCRIPTION = nvl(x_description, DESCRIPTION),
291: LAST_UPDATE_DATE = f_ludate,