DBA Data[Home] [Help]

APPS.ITA_SETUP_PARAMETER_MIG_PKG dependencies on APP_EXCEPTION

Line 78: app_exception.raise_exception;

74: fetch c into recinfo;
75: if (c%notfound) then
76: close c;
77: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
78: app_exception.raise_exception;
79: end if;
80: close c;
81: if ( (recinfo.MIGRATION_ID = X_MIGRATION_ID)
82: and ((recinfo.OLD_PARAMETER_CODE = X_OLD_PARAMETER_CODE)

Line 98: app_exception.raise_exception;

94: ) then
95: null;
96: else
97: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
98: app_exception.raise_exception;
99: end if;
100:
101: return;
102: end LOCK_ROW;