DBA Data[Home] [Help]

APPS.PA_PLAN_RES_DEFAULTS_PVT dependencies on APP_EXCEPTION

Line 121: app_exception.raise_exception;

117: fetch c into recinfo;
118: if (c%notfound) then
119: close c;
120: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
121: app_exception.raise_exception;
122: end if;
123: close c;
124:
125: if recinfo.RECORD_VERSION_NUMBER = P_RECORD_VERSION_NUMBER then

Line 129: app_exception.raise_exception;

125: if recinfo.RECORD_VERSION_NUMBER = P_RECORD_VERSION_NUMBER then
126: null;
127: else
128: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
129: app_exception.raise_exception;
130: end if;
131:
132: return;
133: