DBA Data[Home] [Help]

APPS.BNE_PARAM_GROUPS_PKG dependencies on BNE_PARAM_GROUPS_PKG

Line 1: package body BNE_PARAM_GROUPS_PKG as

1: package body BNE_PARAM_GROUPS_PKG as
2: /* $Header: bnepargb.pls 120.2 2005/06/29 03:40:35 dvayro noship $ */
3:
4: procedure INSERT_ROW (
5: X_ROWID in out NOCOPY VARCHAR2,

Line 439: BNE_PARAM_GROUPS_PKG.Update_Row(

435: -- Test for customization and version
436: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
437: db_ludate, x_custom_mode)) then
438: -- Update existing row
439: BNE_PARAM_GROUPS_PKG.Update_Row(
440: X_APPLICATION_ID => l_app_id,
441: X_PARAM_LIST_CODE => x_param_list_code,
442: X_SEQUENCE_NUM => x_sequence_num,
443: X_OBJECT_VERSION_NUMBER => x_object_version_number,

Line 456: BNE_PARAM_GROUPS_PKG.Insert_Row(

452: end if;
453: exception
454: when no_data_found then
455: -- Record doesn't exist - insert in all cases
456: BNE_PARAM_GROUPS_PKG.Insert_Row(
457: X_ROWID => l_row_id,
458: X_APPLICATION_ID => l_app_id,
459: X_PARAM_LIST_CODE => x_param_list_code,
460: X_SEQUENCE_NUM => x_sequence_num,

Line 475: end BNE_PARAM_GROUPS_PKG;

471: );
472: end;
473: end LOAD_ROW;
474:
475: end BNE_PARAM_GROUPS_PKG;