DBA Data[Home] [Help]

APPS.WMS_WP_PLANNING_CRITERIA_PKG dependencies on FND_MESSAGE

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

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

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

246: OR ((recinfo.ALLOCATION_METHOD is null) AND (X_ALLOCATION_METHOD is null)))
247: ) then
248: null;
249: else
250: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
251: app_exception.raise_exception;
252: end if;
253:
254: for tlinfo in c1 loop

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

257: OR ((tlinfo.PLANNING_CRITERIA is null) AND (X_PLANNING_CRITERIA is null)))
258: ) then
259: null;
260: else
261: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
262: app_exception.raise_exception;
263: end if;
264: end if;
265: end loop;