DBA Data[Home] [Help]

APPS.AK_FLOWS_PKG dependencies on FND_MESSAGE

Line 199: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

195: open c;
196: fetch c into recinfo;
197: if (c%notfound) then
198: close c;
199: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
200: app_exception.raise_exception;
201: end if;
202: close c;
203: if ( ((recinfo.ATTRIBUTE1 = X_ATTRIBUTE1)

Line 256: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

252: AND (recinfo.PRIMARY_PAGE_CODE = X_PRIMARY_PAGE_CODE)
253: ) then
254: null;
255: else
256: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
257: app_exception.raise_exception;
258: end if;
259:
260: open c1;

Line 275: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

271: AND (X_DESCRIPTION is null)))
272: ) then
273: null;
274: else
275: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
276: app_exception.raise_exception;
277: end if;
278: return;
279: end LOCK_ROW;

Line 508: fnd_message.set_name('AK', 'AK_NEW_FLOW_ALREADY_EXISTS');

504: b_success := f_csr%found;
505: close f_csr;
506: -- AK_FLOWS is a parent table. If you can't find a record, exit with an error message.
507: if (not b_success) then
508: fnd_message.set_name('AK', 'AK_NEW_FLOW_ALREADY_EXISTS');
509: app_exception.raise_exception;
510: end if;
511: -- Put new code and id into record and insert into appropriate table
512: f_rec.flow_code := p_n_code;