DBA Data[Home] [Help]

APPS.BNE_CACHE_DIRECTIVES_PKG dependencies on FND_LOAD_UTIL

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

332: -- translate values to IDs
333: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_directive_asn);
334:
335: -- Translate owner to file_last_updated_by
336: f_luby := fnd_load_util.owner_id(x_owner);
337:
338: -- Translate char last_update_date to date
339: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
340: begin

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

345: and DIRECTIVE_CODE = x_directive_code
346: and LANGUAGE = userenv('LANG');
347:
348: -- Test for customization and version
349: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
350: db_ludate, x_custom_mode)) then
351:
352: update BNE_CACHE_DIRECTIVES_TL
353: set USER_NAME = x_user_name,

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

405: -- translate values to IDs
406: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_directive_asn);
407:
408: -- Translate owner to file_last_updated_by
409: f_luby := fnd_load_util.owner_id(x_owner);
410:
411: -- Translate char last_update_date to date
412: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
413: begin

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

417: where APPLICATION_ID = l_app_id
418: and DIRECTIVE_CODE = x_directive_code;
419:
420: -- Test for customization and version
421: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
422: db_ludate, x_custom_mode)) then
423: -- Update existing row
424: BNE_CACHE_DIRECTIVES_PKG.Update_Row(
425: X_APPLICATION_ID => l_app_id,