DBA Data[Home] [Help]

APPS.AK_LOV_RELATIONS_PKG dependencies on APP_EXCEPTION

Line 184: app_exception.raise_exception;

180: fetch c into recinfo;
181: if (c%notfound) then
182: close c;
183: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
184: app_exception.raise_exception;
185: end if;
186: close c;
187:
188: if ( ((recinfo.REQUIRED_FLAG = X_REQUIRED_FLAG)

Line 195: app_exception.raise_exception;

191: ) then
192: null;
193: else
194: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
195: app_exception.raise_exception;
196: end if;
197:
198: return;
199: end LOCK_ROW;