DBA Data[Home] [Help]

APPS.FEM_BRANCHES_PKG dependencies on FND_LOAD_UTIL

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

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

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

299: where BRANCH_CODE = x_BRANCH_CODE
300: and LANGUAGE = userenv('LANG');
301:
302: -- Test for customization and version
303: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
304: db_ludate, x_custom_mode)) then
305: -- Update translations for this language
306: update FEM_BRANCHES_TL set
307: BRANCH_NAME = decode(x_BRANCH_NAME,

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

304: db_ludate, x_custom_mode)) then
305: -- Update translations for this language
306: update FEM_BRANCHES_TL set
307: BRANCH_NAME = decode(x_BRANCH_NAME,
308: fnd_load_util.null_value, null, -- Real null
309: null, x_BRANCH_NAME, -- No change
310: x_BRANCH_NAME),
311: DESCRIPTION = nvl(x_description, DESCRIPTION),
312: LAST_UPDATE_DATE = f_ludate,