DBA Data[Home] [Help]

APPS.FND_OBJECTS_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.PK4_COLUMN_TYPE = X_PK4_COLUMN_TYPE) OR

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

188: ((recinfo.PK5_COLUMN_NAME IS NULL) AND (X_PK5_COLUMN_NAME IS NULL)))
189: ) then
190: null;
191: else
192: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
193: app_exception.raise_exception;
194: end if;
195:
196: for tlinfo in c1 loop

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

199: AND (tlinfo.DESCRIPTION = X_DESCRIPTION)
200: ) then
201: null;
202: else
203: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
204: app_exception.raise_exception;
205: end if;
206: end if;
207: end loop;