DBA Data[Home] [Help]

APPS.BNE_MENUS_PKG dependencies on BNE_MENUS_PKG

Line 1: package body BNE_MENUS_PKG as

1: package body BNE_MENUS_PKG as
2: /* $Header: bnemenub.pls 120.3 2005/06/29 03:40:25 dvayro noship $ */
3:
4: procedure INSERT_ROW (
5: X_ROWID in out NOCOPY VARCHAR2,

Line 474: BNE_MENUS_PKG.Update_Row(

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,
476: X_MENU_CODE => x_menu_code,
477: X_PARENT_APP_ID => l_parent_app_id,
478: X_PARENT_CODE => x_parent_code,

Line 496: BNE_MENUS_PKG.Insert_Row(

492: end if;
493: exception
494: when no_data_found then
495: -- Record doesn't exist - insert in all cases
496: BNE_MENUS_PKG.Insert_Row(
497: X_ROWID => l_row_id,
498: X_APPLICATION_ID => l_app_id,
499: X_MENU_CODE => x_menu_code,
500: X_PARENT_APP_ID => l_parent_app_id,

Line 520: end BNE_MENUS_PKG;

516: );
517: end;
518: end LOAD_ROW;
519:
520: end BNE_MENUS_PKG;