DBA Data[Home] [Help]

APPS.BNE_LAYOUTS_PKG dependencies on FND_LOAD_UTIL

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

385: -- translate values to IDs
386: l_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_layout_asn);
387:
388: -- Translate owner to file_last_updated_by
389: f_luby := fnd_load_util.owner_id(x_owner);
390:
391: -- Translate char last_update_date to date
392: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
393: begin

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

398: and LAYOUT_CODE = x_layout_code
399: and LANGUAGE = userenv('LANG');
400:
401: -- Test for customization and version
402: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
403: db_ludate, x_custom_mode)) then
404:
405: update BNE_LAYOUTS_TL
406: set USER_NAME = x_user_name,

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

473: l_reporting_interface_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_reporting_interface_asn);
474: l_create_doc_list_app_id := BNE_LCT_TOOLS_PKG.ASN_TO_APP_ID(x_create_doc_list_asn);
475:
476: -- Translate owner to file_last_updated_by
477: f_luby := fnd_load_util.owner_id(x_owner);
478:
479: -- Translate char last_update_date to date
480: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
481: begin

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

485: where APPLICATION_ID = l_app_id
486: and LAYOUT_CODE = x_layout_code;
487:
488: -- Test for customization and version
489: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
490: db_ludate, x_custom_mode)) then
491: -- Update existing row
492: BNE_LAYOUTS_PKG.Update_Row(
493: X_APPLICATION_ID => l_app_id,