DBA Data[Home] [Help]

APPS.BNE_LAYOUTS_PKG dependencies on FND_MESSAGE

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

160: open c;
161: fetch c into recinfo;
162: if (c%notfound) then
163: close c;
164: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
165: app_exception.raise_exception;
166: end if;
167: close c;
168: if ( ((recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)

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

186: OR ((recinfo.CREATE_DOC_LIST_CODE is null) AND (X_CREATE_DOC_LIST_CODE is null)))
187: ) then
188: null;
189: else
190: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
191: app_exception.raise_exception;
192: end if;
193:
194: for tlinfo in c1 loop

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

196: if ( (tlinfo.USER_NAME = X_USER_NAME)
197: ) then
198: null;
199: else
200: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
201: app_exception.raise_exception;
202: end if;
203: end if;
204: end loop;