DBA Data[Home] [Help]

APPS.BNE_MENUS_PKG dependencies on FND_LOAD_UTIL

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

371: -- translate values to IDs
372: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_menu_asn);
373:
374: -- Translate owner to file_last_updated_by
375: f_luby := fnd_load_util.owner_id(x_owner);
376:
377: -- Translate char last_update_date to date
378: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
379: begin

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

384: and MENU_CODE = x_menu_code
385: and LANGUAGE = userenv('LANG');
386:
387: -- Test for customization and version
388: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
389: db_ludate, x_custom_mode)) then
390:
391: update BNE_MENUS_TL
392: set USER_NAME = x_user_name,

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

455: l_integrator_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_integrator_asn);
456: l_param_list_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_param_list_asn);
457:
458: -- Translate owner to file_last_updated_by
459: f_luby := fnd_load_util.owner_id(x_owner);
460:
461: -- Translate char last_update_date to date
462: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
463: begin

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

467: where APPLICATION_ID = l_app_id
468: and MENU_CODE = x_menu_code;
469:
470: -- Test for customization and version
471: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
472: db_ludate, x_custom_mode)) then
473: -- Update existing row
474: BNE_MENUS_PKG.Update_Row(
475: X_APPLICATION_ID => l_app_id,