DBA Data[Home] [Help]

APPS.BNE_LAYOUTS_PKG dependencies on FND_LOAD_UTIL

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

394: -- translate values to IDs
395: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_layout_asn);
396:
397: -- Translate owner to file_last_updated_by
398: f_luby := fnd_load_util.owner_id(x_owner);
399:
400: -- Translate char last_update_date to date
401: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
402: begin

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

407: and LAYOUT_CODE = x_layout_code
408: and LANGUAGE = userenv('LANG');
409:
410: -- Test for customization and version
411: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
412: db_ludate, x_custom_mode)) then
413:
414: update BNE_LAYOUTS_TL
415: set USER_NAME = x_user_name,

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

483: l_reporting_interface_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_reporting_interface_asn);
484: l_create_doc_list_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_create_doc_list_asn);
485:
486: -- Translate owner to file_last_updated_by
487: f_luby := fnd_load_util.owner_id(x_owner);
488:
489: -- Translate char last_update_date to date
490: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
491: begin

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

495: where APPLICATION_ID = l_app_id
496: and LAYOUT_CODE = x_layout_code;
497:
498: -- Test for customization and version
499: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
500: db_ludate, x_custom_mode)) then
501: -- Update existing row
502: BNE_LAYOUTS_PKG.Update_Row(
503: X_APPLICATION_ID => l_app_id,