DBA Data[Home] [Help]

APPS.BNE_INTERFACES_PKG dependencies on FND_LOAD_UTIL

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

358: -- translate values to IDs
359: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_interface_asn);
360:
361: -- Translate owner to file_last_updated_by
362: f_luby := fnd_load_util.owner_id(x_owner);
363:
364: -- Translate char last_update_date to date
365: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
366: begin

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

371: and INTERFACE_CODE = x_interface_code
372: and LANGUAGE = userenv('LANG');
373:
374: -- Test for customization and version
375: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
376: db_ludate, x_custom_mode)) then
377:
378: update BNE_INTERFACES_TL
379: set USER_NAME = x_user_name,

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

438: l_integrator_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_integrator_asn);
439: l_upload_param_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_upload_param_list_asn);
440:
441: -- Translate owner to file_last_updated_by
442: f_luby := fnd_load_util.owner_id(x_owner);
443:
444: -- Translate char last_update_date to date
445: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
446: begin

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

450: where APPLICATION_ID = l_app_id
451: and INTERFACE_CODE = x_interface_code;
452:
453: -- Test for customization and version
454: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
455: db_ludate, x_custom_mode)) then
456: -- Update existing row
457: BNE_INTERFACES_PKG.Update_Row(
458: X_APPLICATION_ID => l_app_id,