DBA Data[Home] [Help]

APPS.OE_PC_RSETS_PKG dependencies on FND_MESSAGE

Line 208: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');

204: Open C;
205: Fetch C into Recinfo;
206: if (C%NOTFOUND) then
207: Close C;
208: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
209: APP_EXCEPTION.Raise_Exception;
210: end if;
211: Close C;
212: if (

Line 228: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

224: AND(x_last_update_login IS NULL)))
225: ) then
226: return;
227: else
228: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
229: APP_EXCEPTION.Raise_Exception;
230: end if;
231:
232: Open C1;

Line 236: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');

232: Open C1;
233: Fetch C1 into tlinfo;
234: if (C1%NOTFOUND) then
235: Close C1;
236: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
237: APP_EXCEPTION.Raise_Exception;
238: end if;
239: Close C1;
240:

Line 254: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');

250: AND(x_last_update_login IS NULL)))
251: ) then
252: return;
253: else
254: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
255: APP_EXCEPTION.Raise_Exception;
256: end if;
257:
258: End Lock_Row;

Line 463: fnd_message.set_name('ONT', 'OE_PC_RS_REF_EXISTS');

459: FROM oe_pc_conditions
460: WHERE record_set_id = x_record_set_id);
461: EXCEPTION
462: WHEN NO_DATA_FOUND THEN
463: fnd_message.set_name('ONT', 'OE_PC_RS_REF_EXISTS');
464: app_exception.raise_exception;
465: End Check_References;
466:
467: -----------------------------------------------------------------------

Line 504: fnd_message.set_name('ONT', 'OE_PC_RS_DUP_DISPLAY_NAME');

500: AND record_set_display_name = x_record_set_display_name
501: AND ((x_rowid IS null) OR (row_id <> x_rowid));
502:
503: if (dummy >= 1) then
504: fnd_message.set_name('ONT', 'OE_PC_RS_DUP_DISPLAY_NAME');
505: app_exception.raise_exception;
506: end if;
507: end if;
508:

Line 519: fnd_message.set_name('ONT', 'OE_PC_RS_DUP_SHORT_NAME');

515: AND record_set_short_name = x_record_set_short_name
516: AND ((x_rowid IS null) OR (rowid <> x_rowid));
517:
518: if (dummy >= 1) then
519: fnd_message.set_name('ONT', 'OE_PC_RS_DUP_SHORT_NAME');
520: app_exception.raise_exception;
521: end if;
522: end if;
523: if (chk_pk_flag = TRUE) then

Line 534: fnd_message.set_name('ONT', 'OE_PC_PK_RS_EXISTS');

530: AND x_pk_record_set_flag = 'Y'
531: AND ((x_rowid IS null) OR (rowid <> x_rowid));
532:
533: if (dummy >= 1) then
534: fnd_message.set_name('ONT', 'OE_PC_PK_RS_EXISTS');
535: app_exception.raise_exception;
536: end if;
537: end if;
538: