DBA Data[Home] [Help]

APPS.BNE_INTEGRATORS_PKG dependencies on FND_LOAD_UTIL

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

503: -- translate values to IDs
504: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_integrator_asn);
505:
506: -- Translate owner to file_last_updated_by
507: f_luby := fnd_load_util.owner_id(x_owner);
508:
509: -- Translate char last_update_date to date
510: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
511: begin

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

516: and INTEGRATOR_CODE = x_integrator_code
517: and LANGUAGE = userenv('LANG');
518:
519: -- Test for customization and version
520: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
521: db_ludate, x_custom_mode)) then
522:
523: update BNE_INTEGRATORS_TL
524: set USER_NAME = x_user_name,

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

605: l_create_doc_list_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_create_doc_list_asn);
606: l_session_param_list_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_session_param_list_asn);
607:
608: -- Translate owner to file_last_updated_by
609: f_luby := fnd_load_util.owner_id(x_owner);
610:
611: -- Translate char last_update_date to date
612: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
613: begin

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

617: where APPLICATION_ID = l_app_id
618: and INTEGRATOR_CODE = x_integrator_code;
619:
620: -- Test for customization and version
621: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
622: db_ludate, x_custom_mode)) then
623: -- Update existing row
624: BNE_INTEGRATORS_PKG.Update_Row(
625: X_APPLICATION_ID => l_app_id,